:root {
  --ink: #1d1d1f;
  --ink-2: #424245;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --blue: #0066cc;
  --blue-dark: #004f9f;
  --blue-soft: #eaf4ff;
  --blue-quiet: #f5f9ff;
  --footer: #061f3d;
  --shadow: 0 18px 44px rgba(0, 40, 85, 0.08);
  --shadow-soft: 0 10px 26px rgba(0, 40, 85, 0.06);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 72px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(210, 210, 215, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.25rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-2);
  font-size: 0.94rem;
}

.main-nav a {
  padding: 23px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 102, 204, 0.18);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 8px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 68svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  position: relative;
  width: min(100% - 80px, var(--max));
  margin: 0 auto;
  padding: 96px 0 70px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 3.55rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(0, 102, 204, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
}

.btn-secondary {
  color: var(--blue);
  background: #ffffff;
  border-color: rgba(0, 102, 204, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--blue-soft);
  border-color: rgba(0, 102, 204, 0.45);
}

.btn-wide {
  width: 100%;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  max-width: 660px;
  margin: 42px auto 0;
}

.hero-stats div {
  padding: 18px 16px;
  background: var(--blue-quiet);
  border: 1px solid #cfe5ff;
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--ink-2);
  background: #ffffff;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 104px 40px;
}

.section-light,
.seo-section {
  background: var(--soft);
}

.section-head {
  width: min(100%, var(--max));
  margin: 0 auto 44px;
}

.section-head h2,
.split-copy h2,
.form-copy h2 {
  max-width: 800px;
  margin: 0;
  color: var(--ink);
  font-size: 2.7rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head > p:not(.eyebrow),
.split-copy p,
.form-copy p {
  max-width: 730px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid,
.article-grid,
.audience-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.article-card,
.audience-grid article {
  min-height: 248px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(210, 210, 215, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
  font-weight: 900;
}

.feature-card h3,
.article-card h2,
.article-card h3,
.audience-grid h3,
.timeline-item h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.35;
}

.feature-card p,
.article-card p,
.audience-grid p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.split-section,
.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  width: min(100% - 80px, var(--max));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  color: var(--blue);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-dark);
}

.requirements-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: var(--blue-quiet);
  border: 1px solid #cfe5ff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.requirement-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(210, 210, 215, 0.72);
  border-radius: 8px;
}

.requirement-row span {
  color: var(--blue);
  font-weight: 900;
}

.requirement-row strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
}

.section-ink {
  color: #ffffff;
  background: var(--footer);
}

.section-ink .section-head h2 {
  color: #ffffff;
}

.section-ink .section-head p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.section-ink .eyebrow {
  color: #8cc8ff;
}

.timeline {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.timeline-item {
  position: relative;
  min-height: 248px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
  font-weight: 900;
}

.audience-section {
  background: #ffffff;
}

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

.audience-grid article {
  min-height: 190px;
  background: #ffffff;
}

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

.article-card {
  min-height: 240px;
}

.article-card-link {
  display: block;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-card-link:hover,
.article-card-link:focus-visible {
  border-color: rgba(0, 102, 204, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.article-card > p:first-child {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 900;
}

.article-card span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.article-page,
.article-detail {
  background: #ffffff;
}

.article-hero {
  width: min(100% - 80px, 920px);
  margin: 0 auto;
  padding: 108px 0 54px;
  text-align: center;
}

.article-hero h1,
.article-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.article-hero p:last-child,
.article-title > p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.article-list {
  width: min(100% - 80px, var(--max));
  margin: 0 auto;
  padding: 0 0 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.article-directory .article-hero {
  padding-bottom: 36px;
}

.article-directory-tools {
  width: min(100% - 80px, var(--max));
  margin: 0 auto 28px;
  padding: 24px;
  display: grid;
  gap: 18px;
  background: var(--blue-quiet);
  border: 1px solid #cfe5ff;
  border-radius: 8px;
}

.article-search {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.article-search span {
  font-size: 0.95rem;
}

.article-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-search input:focus {
  outline: 3px solid rgba(0, 102, 204, 0.16);
  border-color: var(--blue);
}

.article-tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tag-filter button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink-2);
  background: #ffffff;
  border: 1px solid rgba(210, 210, 215, 0.9);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.article-tag-filter button:hover,
.article-tag-filter button:focus-visible {
  color: var(--blue);
  border-color: rgba(0, 102, 204, 0.42);
}

.article-tag-filter button.is-active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.article-tag-filter button span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-tag-filter button.is-active span {
  color: rgba(255, 255, 255, 0.78);
}

.article-result-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.article-directory-list {
  width: min(100% - 80px, 980px);
  margin: 0 auto;
  padding: 0 0 24px;
  display: grid;
  gap: 16px;
}

.article-list-item a {
  display: block;
  padding: 28px 30px;
  background: #ffffff;
  border: 1px solid rgba(210, 210, 215, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-list-item a:hover,
.article-list-item a:focus-visible {
  border-color: rgba(0, 102, 204, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.article-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.article-list-meta span:first-child {
  color: var(--blue);
}

.article-list-item h2 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.article-list-item p {
  margin: 0;
  color: var(--muted);
}

.article-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.article-tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(0, 102, 204, 0.12);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
}

.article-title-tags {
  margin-top: 22px;
}

.article-empty-search {
  margin: 0;
  padding: 30px;
  color: var(--muted);
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.article-pagination {
  width: min(100% - 80px, 980px);
  margin: 0 auto 96px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.article-pagination button {
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink-2);
  background: #ffffff;
  border: 1px solid rgba(210, 210, 215, 0.9);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.article-pagination button:first-child,
.article-pagination button:last-child {
  min-width: 76px;
}

.article-pagination button:hover,
.article-pagination button:focus-visible {
  color: var(--blue);
  border-color: rgba(0, 102, 204, 0.42);
}

.article-pagination button.is-active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.article-pagination button:disabled {
  color: var(--muted);
  background: var(--soft);
  cursor: not-allowed;
  opacity: 0.65;
}

.article-pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 4px;
  color: var(--muted);
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 46px;
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.empty-state h2 {
  margin: 0;
  color: var(--ink);
}

.empty-state p {
  margin: 10px 0 0;
  color: var(--muted);
}

.article-detail article {
  width: min(100% - 80px, 860px);
  margin: 0 auto;
  padding: 70px 0 100px;
}

.article-back a {
  color: var(--blue);
  font-weight: 900;
}

.article-title {
  padding: 36px 0 46px;
  border-bottom: 1px solid var(--line);
}

.article-title > p:first-child {
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 900;
}

.article-title > p:last-child {
  margin-left: 0;
  margin-right: 0;
}

.article-content {
  padding-top: 32px;
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 44px 0 12px;
  color: var(--ink);
  line-height: 1.2;
}

.article-content h2 {
  font-size: 2rem;
}

.article-content h3 {
  font-size: 1.48rem;
}

.article-content p,
.article-content ul {
  margin: 18px 0 0;
}

.article-content ul {
  padding-left: 1.2em;
}

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

.article-content a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-section {
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bot-field {
  display: none;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(0, 102, 204, 0.16);
  border-color: var(--blue);
}

.lead-form .consent-field {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.lead-form .consent-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--blue);
}

.lead-form .consent-field a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-section {
  background: #ffffff;
}

.faq-list {
  width: min(100%, 920px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  width: 28px;
  height: 28px;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 6px;
  width: 16px;
  height: 2px;
  background: var(--blue);
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0);
}

.faq-answer {
  display: none;
  padding: 0 44px 24px 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 42px 40px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--footer);
}

.site-footer > div {
  width: min(100%, var(--max));
}

.footer-brand {
  color: #ffffff;
}

.footer-brand .brand-mark {
  background: #ffffff;
  color: var(--blue);
}

.site-footer p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 22px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(0, 40, 85, 0.1);
  }

  .main-nav.is-open a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    max-width: 700px;
    font-size: 3rem;
  }

  .feature-grid,
  .timeline,
  .article-grid,
  .article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .form-section {
    grid-template-columns: 1fr;
    width: min(100% - 44px, var(--max));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 44px, var(--max));
    padding: 62px 0 54px;
  }

  .hero h1 {
    font-size: 2.16rem;
    line-height: 1.15;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip span {
    min-height: 64px;
    font-size: 0.9rem;
  }

  .section {
    padding: 72px 22px;
  }

  .section-head h2,
  .split-copy h2,
  .form-copy h2 {
    font-size: 2rem;
  }

  .feature-grid,
  .timeline,
  .article-grid,
  .article-list,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .article-hero,
  .article-detail article,
  .article-list,
  .article-directory-tools,
  .article-directory-list {
    width: min(100% - 44px, var(--max));
  }

  .article-hero {
    padding: 72px 0 42px;
  }

  .article-hero h1,
  .article-title h1 {
    font-size: 2.45rem;
  }

  .article-directory-tools {
    padding: 18px;
    margin-bottom: 20px;
  }

  .article-tag-filter {
    gap: 8px;
  }

  .article-tag-filter button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.9rem;
  }

  .article-directory-list {
    padding-bottom: 20px;
  }

  .article-list-item a {
    padding: 22px;
  }

  .article-list-item h2 {
    font-size: 1.24rem;
  }

  .article-pagination {
    width: min(100% - 44px, var(--max));
    margin-bottom: 72px;
    justify-content: center;
  }

  .article-pagination button {
    min-width: 38px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.92rem;
  }

  .feature-card,
  .article-card,
  .audience-grid article,
  .timeline-item {
    min-height: auto;
  }

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

  .lead-form {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 1.94rem;
  }

  .btn {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
