@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* ===== 变量 & 重置 ===== */
:root {
  --c-green: #00ff80;
  --c-blue: #0000ff;
  --c-black: #000000;
  --c-white: #ffffff;
  --c-grey: #111111;
  --c-grey2: #222222;
  --c-grey-light: #f0f0f0;
  --c-green-dim: #00cc66;
  --border: 3px solid var(--c-black);
  --border-thick: 4px solid var(--c-black);
  --font: 'Noto Sans KR', system-ui, -apple-system, sans-serif;
  --aside-w: 260px;
  --max-w: 1200px;
  --gap: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  background: var(--c-white);
  color: var(--c-black);
  overflow-x: hidden;
  display: flex;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }

/* ===== ASIDE / NAV ===== */
.site-aside {
  width: var(--aside-w);
  min-height: 100vh;
  background: var(--c-black);
  border-right: var(--border-thick);
  border-right-color: var(--c-green);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
  z-index: 100;
}

.aside-nav {
  padding: 20px 16px 0;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--c-green);
  border: var(--border);
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-black);
  text-decoration: none;
}
.brand-icon:hover { background: var(--c-blue); color: var(--c-white); text-decoration: none; }
.brand-icon__txt { font-weight: 700; font-size: 13px; letter-spacing: -0.5px; }
.brand-icon img { width: 36px; height: 36px; object-fit: contain; }

.nav-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-pill {
  display: block;
  padding: 10px 14px;
  border: 2px solid var(--c-green);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  transition: none;
  min-height: 40px;
  line-height: 1.4;
}
.nav-pill:hover {
  background: var(--c-green);
  color: var(--c-black);
  text-decoration: none;
}
.nav-pill--active {
  background: var(--c-green);
  color: var(--c-black);
  font-weight: 700;
}

/* ===== ASIDE RELATED ===== */
.aside-related {
  padding: 24px 16px;
  border-top: 2px solid var(--c-grey2);
  margin-top: 24px;
}
.aside-related__heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.aside-related + .aside-related .aside-related__heading ~ p.subtitle {
  font-size: 12px;
}
.aside-related__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}
.aside-related__item {}
.aside-related__link {
  display: block;
  padding: 8px 10px;
  color: #aaa;
  font-size: 13px;
  border-left: 2px solid transparent;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.aside-related__link:hover {
  color: var(--c-green);
  border-left-color: var(--c-green);
  text-decoration: none;
}

/* subtitle pattern */
p.subtitle, p.subhead, p.desc, p.lead {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  margin-bottom: 16px;
  font-weight: 400;
}
.aside-related p.subtitle {
  color: #555;
  font-size: 12px;
  margin-bottom: 0;
}

/* ===== PAGE BODY ===== */
.page-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.page-body--inner {}

/* ===== HERO (HOME) ===== */
.hero {
  min-height: 100vh;
  background: var(--c-black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero__media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  background: var(--c-grey2);
  overflow: hidden;
}

.hero__img-wrap {
  position: absolute;
  border: var(--border-thick);
  overflow: hidden;
}
.hero__img-wrap--1 {
  top: 0;
  left: 0;
  width: 70%;
  height: 60%;
  border-color: var(--c-green);
  z-index: 2;
}
.hero__img-wrap--2 {
  bottom: 0;
  right: 0;
  width: 65%;
  height: 55%;
  border-color: var(--c-blue);
  z-index: 3;
  transform: translate(12px, 12px);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--c-green);
}
.hero-placeholder--1 { background: var(--c-grey2); }
.hero-placeholder--2 { background: #1a1a2e; }

.hero__badge {
  position: absolute;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  z-index: 10;
  border: 2px solid;
}
.hero__badge--1 { top: 24px; right: 24px; background: var(--c-green); color: var(--c-black); border-color: var(--c-black); }
.hero__badge--2 { bottom: 80px; left: 20px; background: var(--c-blue); color: var(--c-white); border-color: var(--c-white); }
.hero__badge--3 { top: 50%; left: 10px; background: var(--c-black); color: var(--c-green); border-color: var(--c-green); transform: translateY(-50%) rotate(-2deg); }

.hero__content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  z-index: 5;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--c-green);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero__h1 {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 20px;
  border-left: 6px solid var(--c-green);
  padding-left: 20px;
}

.hero__lead {
  font-size: 17px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  border: var(--border);
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  font-family: var(--font);
  transition: none;
}
.btn--primary { background: var(--c-green); color: var(--c-black); border-color: var(--c-black); }
.btn--primary:hover { background: var(--c-black); color: var(--c-green); border-color: var(--c-green); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--c-white); border-color: var(--c-white); }
.btn--ghost:hover { background: var(--c-white); color: var(--c-black); text-decoration: none; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 13px; min-height: 40px; }

/* ===== MAIN CONTENT / WRAP ===== */
.main-content { flex: 1; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 40px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  margin-bottom: 64px;
}
.content-section:last-child { margin-bottom: 0; }

.section-h2 {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--c-black);
  border-bottom: 4px solid var(--c-green);
  padding-bottom: 10px;
  margin-bottom: 6px;
  display: inline-block;
}

/* ===== PROSE ARTICLE ===== */
.prose-article {
  background: var(--c-white);
  border: var(--border);
}

.article-inner {
  padding: 36px 40px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--c-black);
}

.article-inner h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 4px solid var(--c-green);
}
.article-inner h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--c-blue);
}
.article-inner p { margin-bottom: 16px; }
.article-inner ul, .article-inner ol { padding-left: 24px; margin-bottom: 16px; }
.article-inner li { margin-bottom: 8px; }
.article-inner strong { font-weight: 700; }
.article-inner a { color: var(--c-blue); text-decoration: underline; }
.article-inner a:hover { color: var(--c-black); }
.article-inner time { font-weight: 500; color: var(--c-blue); }
.article-inner blockquote {
  border-left: 4px solid var(--c-blue);
  padding: 12px 20px;
  background: var(--c-grey-light);
  margin: 20px 0;
  font-style: normal;
}

.article-footer-nav {
  display: flex;
  gap: 16px;
  padding: 24px 40px;
  border-top: 2px solid var(--c-grey-light);
  background: var(--c-grey-light);
  flex-wrap: wrap;
}
.article-footer-nav .btn--ghost {
  color: var(--c-black);
  border-color: var(--c-black);
}
.article-footer-nav .btn--ghost:hover {
  background: var(--c-black);
  color: var(--c-white);
}

/* ===== FEAT GRID (HOME) ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
}

.feat-card {
  padding: 28px 24px;
  border: var(--border);
  border-width: 0 2px 2px 0;
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
.feat-card:nth-child(3n) { border-right-width: 0; }
.feat-card--0 { border-top: 4px solid var(--c-green); }
.feat-card--1 { border-top: 4px solid var(--c-blue); }
.feat-card--2 { border-top: 4px solid var(--c-black); }

.feat-card__num {
  font-size: 40px;
  font-weight: 700;
  color: var(--c-grey-light);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
  user-select: none;
}
.feat-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feat-card__title a { color: var(--c-black); }
.feat-card__title a:hover { color: var(--c-blue); text-decoration: none; }
.feat-card__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}
.feat-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-blue);
  text-decoration: none;
}
.feat-card__link:hover { text-decoration: underline; }

/* ===== TABLE ===== */
.table-wrap { overflow-x: auto; }

.index-table {
  width: 100%;
  border-collapse: collapse;
  border: var(--border);
  font-size: 15px;
}
.index-table th {
  background: var(--c-black);
  color: var(--c-green);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.tbl-row {
  border-bottom: 2px solid var(--c-grey-light);
}
.tbl-row:hover { background: #f8fff8; }
.tbl-cell {
  padding: 14px 16px;
  vertical-align: top;
}
.tbl-cell--title { font-weight: 700; }
.tbl-cell--title a { color: var(--c-black); }
.tbl-cell--title a:hover { color: var(--c-blue); text-decoration: underline; }
.tbl-cell--desc { color: #555; font-size: 14px; }
.tbl-cell--date { font-size: 13px; color: #888; white-space: nowrap; }
.tbl-empty { text-align: center; color: #999; padding: 24px; }

/* ===== RELATED GRID ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
}
.rel-card {
  padding: 24px 20px;
  border-right: 2px solid var(--c-black);
  position: relative;
}
.rel-card:last-child { border-right: none; }
.rel-card--0 { background: var(--c-green); }
.rel-card--1 { background: var(--c-white); }
.rel-card--2 { background: var(--c-black); color: var(--c-white); }
.rel-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.rel-card--0 .rel-card__title a { color: var(--c-black); }
.rel-card--1 .rel-card__title a { color: var(--c-black); }
.rel-card--2 .rel-card__title a { color: var(--c-green); }
.rel-card__desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
  opacity: 0.75;
}
.rel-card__link {
  font-size: 13px;
  font-weight: 700;
}
.rel-card--0 .rel-card__link { color: var(--c-black); }
.rel-card--1 .rel-card__link { color: var(--c-blue); }
.rel-card--2 .rel-card__link { color: var(--c-green); }

/* ===== INNER HERO (feature) ===== */
.inner-hero {
  background: var(--c-black);
  padding: 48px 48px 40px;
  position: relative;
  border-bottom: 4px solid var(--c-green);
  display: flex;
  align-items: flex-start;
  gap: 32px;
  overflow: hidden;
}
.inner-hero__img {
  width: 240px;
  flex-shrink: 0;
  border: var(--border);
  border-color: var(--c-green);
  overflow: hidden;
}
.feat-hero-img { width: 100%; height: 180px; object-fit: cover; }
.inner-hero__content { flex: 1; }
.inner-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--c-green);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.inner-hero__h1 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.inner-hero__meta {
  font-size: 13px;
  color: #888;
}
.inner-hero__meta time { color: var(--c-green); font-weight: 500; }
.inner-hero__tag {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 12px;
  background: var(--c-blue);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid var(--c-white);
}

/* ===== PRICING HERO ===== */
.pricing-hero {
  background: var(--c-blue);
  padding: 56px 48px;
  border-bottom: 4px solid var(--c-black);
  position: relative;
}
.pricing-hero__label {
  display: inline-block;
  background: var(--c-green);
  color: var(--c-black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  margin-bottom: 16px;
  border: 2px solid var(--c-black);
}
.pricing-hero__h1 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pricing-hero__lead {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.pricing-hero__meta { font-size: 13px; color: rgba(255,255,255,0.6); }
.pricing-hero__meta time { color: var(--c-green); font-weight: 500; }

/* ===== FAQ HERO ===== */
.faq-hero {
  background: var(--c-black);
  padding: 56px 48px;
  border-bottom: 4px solid var(--c-green);
  position: relative;
  overflow: hidden;
}
.faq-hero::before {
  content: 'FAQ';
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  font-weight: 700;
  color: rgba(0,255,128,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.faq-hero__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--c-green);
  margin-bottom: 12px;
}
.faq-hero__h1 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 14px;
}
.faq-hero__lead {
  font-size: 16px;
  color: #ccc;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.faq-hero__meta { font-size: 13px; color: #777; }
.faq-hero__meta time { color: var(--c-green); font-weight: 500; }

/* ===== ABOUT HERO ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 56px 48px;
  background: var(--c-grey-light);
  border-bottom: 4px solid var(--c-black);
  align-items: center;
}
.about-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-hero__h1 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 14px;
  line-height: 1.2;
}
.about-hero__lead {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 520px;
}
.about-hero__meta { font-size: 13px; color: #777; }
.about-hero__meta time { color: var(--c-blue); font-weight: 500; }
.about-hero__img {
  width: 260px;
  flex-shrink: 0;
  border: var(--border-thick);
  overflow: hidden;
}
.about-img { width: 100%; height: 200px; object-fit: cover; }

/* ===== CONTACT HERO ===== */
.contact-hero {
  padding: 56px 48px;
  background: var(--c-white);
  border-bottom: 4px solid var(--c-black);
  position: relative;
}
.contact-hero__bar {
  width: 80px;
  height: 8px;
  background: var(--c-blue);
  margin-bottom: 24px;
}
.contact-hero__h1 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 14px;
  line-height: 1.2;
}
.contact-hero__lead {
  font-size: 17px;
  color: #444;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.contact-hero__meta { font-size: 13px; color: #888; }
.contact-hero__meta time { color: var(--c-blue); }

/* ===== PRIVACY HERO ===== */
.privacy-hero {
  padding: 56px 48px;
  background: var(--c-grey-light);
  border-bottom: 4px solid var(--c-green);
  border-left: 8px solid var(--c-green);
}
.privacy-hero__h1 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 12px;
}
.privacy-hero__date { font-size: 13px; color: #777; margin-bottom: 12px; }
.privacy-hero__date time { color: var(--c-blue); font-weight: 500; }
.privacy-hero__lead { font-size: 16px; color: #444; line-height: 1.7; max-width: 580px; }

/* ===== DEFAULT HERO ===== */
.default-hero {
  padding: 48px 48px 36px;
  background: var(--c-black);
  border-bottom: 4px solid var(--c-green);
}
.default-hero__h1 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
}
.default-hero__lead { font-size: 16px; color: #ccc; line-height: 1.7; margin-bottom: 8px; max-width: 580px; }
.default-hero__meta { font-size: 13px; color: #777; }
.default-hero__meta time { color: var(--c-green); }

/* ===== CTA BLOCK ===== */
.cta-block {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

/* ===== VALS GRID ===== */
.vals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
}
.val-item {
  padding: 32px 24px;
  border-right: 2px solid var(--c-black);
}
.val-item:last-child { border-right: none; }
.val-item__icon {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--c-green);
  margin-bottom: 12px;
  line-height: 1;
}
.val-item__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-black);
}
.val-item__desc { font-size: 14px; color: #555; line-height: 1.7; }

/* ===== CONTACT METHODS ===== */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
}
.contact-method {
  padding: 28px 24px;
  border-right: 2px solid var(--c-black);
}
.contact-method:last-child { border-right: none; }
.contact-method__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--c-green);
  padding-bottom: 8px;
}
.contact-method__val { font-size: 15px; color: #333; line-height: 1.6; }
.contact-method__val a { color: var(--c-blue); text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-black);
  border-top: 4px solid var(--c-green);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  color: #888;
  font-size: 13px;
  font-weight: 400;
}
.footer-links {
  font-size: 13px;
  color: #666;
}
.footer-links a {
  color: var(--c-green);
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}
.footer-links a:hover { text-decoration: underline; }

/* ===== NO DATA / MISC ===== */
.no-data { color: #999; font-size: 14px; padding: 24px; text-align: center; }

/* ===== STAGGER ANIMATION ===== */
@media (prefers-reduced-motion: no-preference) {
  .js-stagger {
    opacity: 0;
    transform: translateY(20px);
    animation: staggerIn 0.4s ease forwards;
    animation-delay: calc(var(--stagger, 0) * 0.08s);
  }
  @keyframes staggerIn {
    to { opacity: 1; transform: translateY(0); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-stagger { opacity: 1; transform: none; animation: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --aside-w: 220px; }
  .wrap { padding: 36px 24px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card:nth-child(3n) { border-right-width: 2px; }
  .feat-card:nth-child(2n) { border-right-width: 0; }
  .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .val-item:nth-child(2) { border-right: none; }
  .val-item:nth-child(3) { border-top: 2px solid var(--c-black); border-right: none; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-method { border-right: none; border-bottom: 2px solid var(--c-black); }
  .contact-method:last-child { border-bottom: none; }
  .related-grid { grid-template-columns: 1fr; }
  .rel-card { border-right: none; border-bottom: 2px solid var(--c-black); }
  .rel-card:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  body { flex-direction: column; }
  .site-aside {
    width: 100%;
    min-height: auto;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 4px solid var(--c-green);
  }
  .aside-nav { padding: 16px 16px 0; }
  .aside-related { display: none; }
  .nav-pills {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom: 16px;
  }
  .nav-pill {
    font-size: 12px;
    padding: 8px 12px;
    min-height: 40px;
  }
  .brand-icon { margin-bottom: 16px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__media {
    grid-column: 1;
    grid-row: 1;
    height: 280px;
  }
  .hero__content {
    grid-column: 1;
    grid-row: 2;
    padding: 36px 24px;
  }
  .hero__h1 { font-size: 26px; }
  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .wrap { padding: 24px 16px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { border-right-width: 0; }
  .feat-card:nth-child(2n) { border-right-width: 0; }
  .vals-grid { grid-template-columns: 1fr; }
  .val-item { border-right: none; border-bottom: 2px solid var(--c-black); }
  .val-item:last-child { border-bottom: none; }

  .inner-hero { flex-direction: column; padding: 32px 20px; }
  .inner-hero__img { width: 100%; }
  .inner-hero__h1 { font-size: 24px; }

  .pricing-hero, .faq-hero, .about-hero, .contact-hero, .privacy-hero, .default-hero {
    padding: 32px 20px;
  }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__img { display: none; }

  .article-inner { padding: 24px 20px; font-size: 16px; }
  .article-footer-nav { padding: 16px 20px; }

  .site-footer { padding: 20px 16px; flex-direction: column; align-items: flex-start; }

  .index-table { font-size: 13px; }
  .tbl-cell { padding: 10px 10px; }
  .tbl-cell--desc { display: none; }

  .cta-block { flex-direction: column; }
  .cta-block .btn { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 22px; }
  .section-h2 { font-size: 20px; }
  .inner-hero__h1 { font-size: 20px; }
  .pricing-hero__h1, .faq-hero__h1, .about-hero__h1, .contact-hero__h1, .privacy-hero__h1 { font-size: 22px; }
  .default-hero__h1 { font-size: 22px; }
}
