:root {
  --bg: #f6f8f7;
  --paper: #f7f7f4;
  --surface: #ffffff;
  --surface-soft: #eef3f0;
  --ink: #14201d;
  --muted: #5d6e68;
  --line: #dce5df;
  --brand: #0b4f43;
  --brand-strong: #063f36;
  --brand-soft: #e3f0eb;
  --telegram: #229ed9;
  --telegram-strong: #147fba;
  --amber: #b77534;
  --shadow: 0 18px 42px rgba(16, 33, 28, .07);
  --shadow-sm: 0 8px 22px rgba(16, 33, 28, .04);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfbf8 0, var(--bg) 520px, #f7f7f4 100%);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.72;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 82px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 228, 223, .86);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #fff;
  background: var(--brand-strong);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(8, 61, 52, .16);
}

.brand strong,
.brand em { display: block; line-height: 1.2; }
.brand strong { font-size: 20px; }
.brand em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  color: #334740;
  font-weight: 800;
}

.nav a:hover { color: var(--brand-strong); background: var(--surface-soft); }

.nav-contact {
  min-height: 42px !important;
  padding: 0 18px !important;
  color: #fff !important;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(13, 98, 82, .16);
}

.nav-contact:hover { color: #fff !important; background: var(--brand-strong) !important; }

.eyebrow {
  display: inline-flex;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 18px 34px rgba(13, 98, 82, .18);
}

.button-primary:hover { color: #fff; background: var(--brand-strong); }

.button-secondary {
  color: var(--brand-strong);
  border-color: rgba(13, 98, 82, .20);
  background: rgba(255, 255, 255, .82);
}

.button-secondary:hover {
  border-color: rgba(13, 98, 82, .42);
  box-shadow: none;
}

.button-telegram {
  color: #fff;
  background: linear-gradient(135deg, #229ed9, #147fba);
  box-shadow: 0 18px 34px rgba(34, 158, 217, .24);
}

.button-telegram:hover {
  color: #fff;
  background: linear-gradient(135deg, #229ed9, #0f75ad);
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(34, 158, 217, .30);
}

.hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  padding: 50px 0 44px;
}

.hero::before {
  position: absolute;
  inset: 18px -44px auto -44px;
  height: 460px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, #fffdf8, #edf6f1 62%, #eef7f6);
  content: "";
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding: 34px 0;
}

.hero h1,
.category-hero h1,
.article h1 {
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero p,
.category-hero p,
.lead {
  max-width: 860px;
  margin: 0;
  color: #4e625b;
  font-size: 19px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(13, 98, 82, .18);
  border-radius: 999px;
  color: var(--brand-strong);
  background: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

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

.quick-audit-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(13, 98, 82, .14);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(160deg, #0b2f2a, #083d34 58%, #10211c);
  box-shadow: var(--shadow);
}

.quick-audit-card::after {
  content: none;
}

.quick-audit-card > * {
  position: relative;
  z-index: 1;
}

.quick-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9de5d7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-audit-card h2 {
  margin: 0;
  color: #fff;
  font-size: 29px;
  line-height: 1.22;
}

.quick-audit-card ol {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
  counter-reset: audit;
}

.quick-audit-card li {
  position: relative;
  min-height: 38px;
  padding-left: 46px;
  color: #eaf6f2;
  font-weight: 800;
  line-height: 1.45;
  counter-increment: audit;
}

.quick-audit-card li::before {
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  content: counter(audit);
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 56px 0;
}

.section + .section {
  margin-top: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.section-head h2,
.final-cta h2,
.category-hero h1 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.card:hover,
.link-card:hover,
.category-page-card:hover,
.latest-item:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 98, 82, .30);
  box-shadow: var(--shadow-sm);
}

.link-card {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.link-card:hover {
  color: var(--brand-strong);
}

.link-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.link-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pain-section { padding-top: 46px; }

.outcome-section {
  padding-top: 84px;
}

.pain-grid,
.outcome-grid,
.category-grid,
.service-grid,
.keyword-featured,
.keyword-compact,
.category-card-grid,
.related-links {
  display: grid;
  gap: 18px;
}

.pain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.pain-grid-eight .pain-card {
  min-height: 0;
}

.pain-card,
.outcome-card,
.category-card,
.service-card,
.keyword-card,
.category-page-card,
.contact-card,
.article-cta,
.related,
.content-section,
.faq,
.category-cta {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.pain-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 24px;
  border-color: rgba(13, 98, 82, .18);
  background: linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pain-card:hover,
.outcome-card:hover,
.category-card:hover,
.service-card:hover,
.keyword-card:hover,
.category-page-card:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 98, 82, .28);
  box-shadow: var(--shadow-sm);
}

.pain-number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--telegram-strong);
  background: #eaf7fd;
  font-size: 12px;
  font-weight: 900;
}

.pain-card h3,
.outcome-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.28;
}

.pain-card p,
.outcome-card p,
.category-card span,
.keyword-card span,
.category-page-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.pain-card p {
  margin: 12px 0 0;
}

.pain-card a {
  display: inline-flex;
  width: fit-content;
  color: var(--brand-strong);
  font-weight: 900;
}

.outcome-shell {
  padding: 36px;
  border: 1px solid rgba(13, 98, 82, .14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 94% 16%, rgba(34, 158, 217, .13), transparent 24%),
    linear-gradient(135deg, #ffffff, #eef7f2);
  box-shadow: var(--shadow-sm);
}

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

.outcome-card {
  min-height: 190px;
  padding: 23px;
}

.outcome-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.outcome-card p {
  margin: 10px 0 0;
}

.mini-links {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.mini-links a {
  display: block;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-strong);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.mini-links a:hover {
  border-color: rgba(13, 98, 82, .30);
  background: var(--brand-soft);
}

.outcome-card-wide {
  grid-column: span 2;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  border-color: rgba(8, 61, 52, .24);
}

.outcome-card-wide h3,
.outcome-card-wide p {
  color: #fff;
}

.outcome-card-wide span {
  color: var(--brand-strong);
  background: #fff;
}

.prepare-section {
  padding-top: 56px;
}

.prepare-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.prepare-card h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.18;
}

.outcome-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(13, 98, 82, .13);
}

.outcome-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

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

.category-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  background: #fff;
}

.service-card {
  min-height: 150px;
  padding: 22px;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.32;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.category-card strong,
.keyword-card strong,
.category-page-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.34;
}

.keyword-section {
  margin-top: 10px;
}

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

.keyword-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 118px;
  padding: 19px;
  background: #fff;
}

.keyword-compact,
.latest-compact {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .58);
}

.keyword-compact a,
.latest-compact a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-strong);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.keyword-compact a:hover,
.latest-compact a:hover {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 78px;
  padding: 42px;
  border: 1px solid rgba(13, 98, 82, .18);
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: var(--ink);
}

.final-cta p {
  max-width: 740px;
  margin: 14px 0 0;
  opacity: .88;
  color: var(--muted);
}

.category-hero {
  margin: 36px 0 34px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.category-hero-copy {
  min-width: 0;
}

.category-hero h1 {
  max-width: 880px;
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.category-hero p {
  max-width: 880px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.category-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.category-page-card {
  min-height: 0;
}

.related-section { padding-top: 32px; }

.support-grid,
.related-read {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.cta-card,
.category-cta,
.article-cta,
.contact-card {
  border: 1px solid rgba(34, 158, 217, .24);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  align-self: start;
}

.cta-card p,
.category-cta p,
.article-cta p,
.contact-card p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.cta-card .button,
.category-cta .button,
.article-cta .button,
.contact-card .button {
  margin-top: 0;
}

.content-section,
.faq {
  padding: 26px;
}

.related h2,
.category-cta h2,
.article-cta h2,
.content-section h2,
.faq h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.18;
}

.related-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.related-links a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.related-links strong { color: var(--ink); line-height: 1.35; }
.related-links span { color: var(--muted); font-size: 13px; }

.article { padding-top: 42px; }

.article-head {
  max-width: 920px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.article-sidebar > * {
  height: auto;
}

.article-sidebar .related-grid {
  grid-template-columns: 1fr;
}

.content-section { margin-bottom: 18px; }

.content-section p,
.article p {
  margin: 0 0 14px;
  color: #324840;
}

.content-section p:last-child,
.article p:last-child { margin-bottom: 0; }

.faq { margin-top: 18px; }

details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

details:last-child { border-bottom: 0; }

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.45;
}

summary::marker { color: var(--brand); }

details p {
  margin-top: 10px !important;
  color: var(--muted);
}

.related .link-card {
  color: inherit;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #2d423b;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
}

.footer {
  padding: 42px 24px 110px;
  color: #cbd7d0;
  background: #101c19;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer strong {
  color: #fff;
  font-size: 22px;
}

.footer p {
  max-width: 660px;
  margin: 8px 0 0;
}

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

.footer-links a {
  color: #e7f1eb;
  font-weight: 800;
}

.footer-telegram {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 16px !important;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(34, 158, 217, .22);
}

.footer-telegram:hover { background: var(--brand-strong); }

.floating-telegram {
  position: fixed;
  right: 28px;
  bottom: 30px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 18px 8px 9px;
  border-radius: 999px;
  background: var(--telegram);
  color: #fff;
  box-shadow: 0 16px 34px rgba(34, 158, 217, .30);
}

.floating-telegram:hover { color: #fff; background: var(--telegram-strong); }

.floating-telegram-icon {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.floating-telegram-icon::before {
  position: absolute;
  left: 10px;
  top: 9px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 15px solid #fff;
  transform: rotate(-18deg);
  content: "";
}

.floating-telegram-label { font-weight: 900; white-space: nowrap; }

@media (min-width: 769px) {
  .floating-telegram { display: none; }
}

@media (max-width: 1080px) {
  .hero-inner,
  .support-grid,
  .related-read,
  .prepare-card,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .quick-audit-card {
    max-width: 640px;
  }

  .pain-grid,
  .outcome-grid,
  .service-grid,
  .keyword-featured,
  .keyword-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-card-wide {
    grid-column: span 2;
  }

  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar {
    position: static;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  main {
    padding-inline: 16px;
    padding-bottom: 96px;
  }

  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand { min-width: 0; }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }

  .nav a {
    min-height: 34px;
    padding: 0 9px;
    font-size: 13px;
  }

  .nav-contact {
    flex: 1 1 150px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 28px;
  }

  .hero::before {
    inset: 8px -16px auto -16px;
    height: 760px;
    border-radius: 26px;
  }

  .hero h1,
  .category-hero h1,
  .article h1 {
    font-size: 36px;
  }

  .hero p,
  .category-hero p,
  .lead {
    font-size: 16px;
  }

  .hero-actions,
  .article-actions,
  .outcome-cta,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .quick-audit-card,
  .outcome-shell,
  .final-cta,
  .article-head {
    padding: 24px;
    border-radius: 22px;
  }

  .category-hero {
    padding: 26px;
    border-radius: 24px;
  }

  .section {
    padding-top: 52px;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .category-hero h1 {
    font-size: 34px;
  }

  .section-head p {
    margin-top: 10px;
  }

  .pain-grid,
  .outcome-grid,
  .service-grid,
  .keyword-featured,
  .keyword-compact,
  .category-card-grid,
  .related-grid,
  .related-links,
  .article-sidebar,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .outcome-card-wide {
    grid-column: auto;
  }

  .footer {
    padding-inline: 16px;
    padding-bottom: 92px;
  }

  .floating-telegram {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    min-height: 52px;
    padding: 8px 14px;
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .category-hero h1,
  .article h1 {
    font-size: 32px;
  }

  .pain-card,
  .outcome-card,
  .keyword-card,
  .category-card,
  .category-page-card,
  .content-section,
  .faq,
  .related,
  .article-cta,
  .category-cta,
  .contact-card {
    padding: 20px;
  }
}
