/* ============================================
   禁漫娘 — 漫画次元任意门
   Design System: 网点纸 · 分格漫画风
   Palette: 奶油白 / 樱花粉 / 薄荷青 / 芥末黄 / 深紫墨
   ============================================ */

:root {
  --ink: #2B1B3D;
  --ink-soft: rgba(43, 27, 61, 0.62);
  --cream: #FFFBF5;
  --cream-2: #FFF4E8;
  --lavender: #EFE9FF;
  --pink: #FF5D8F;
  --pink-soft: #FFD8E4;
  --teal: #00C2A8;
  --teal-soft: #C9F5EE;
  --yellow: #FFCE3A;
  --yellow-soft: #FFF0BF;
  --line: 2px solid var(--ink);
  --line-thin: 2px solid var(--ink);
  --radius: 16px;
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow: 5px 5px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --shadow-pink: 6px 6px 0 var(--pink);
  --shadow-teal: 6px 6px 0 var(--teal);
  --ease: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- 基础重置 ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(43, 27, 61, 0.10) 1.4px, transparent 1.5px);
  background-size: 16px 16px;
  background-position: 0 0;
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

a { color: inherit; }

::selection {
  background: var(--yellow);
  color: var(--ink);
}

/* 滚动条 */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--lavender); }
::-webkit-scrollbar-thumb {
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ---------- 核心布局 ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #F5F0FF;
  border-top: var(--line);
  border-bottom: var(--line);
}

.section:nth-child(even)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(43, 27, 61, 0.13) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
  pointer-events: none;
  opacity: 0.7;
}

.section > .container { position: relative; z-index: 2; }

/* ---------- 导航 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: var(--line);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(
    -45deg,
    var(--pink) 0 8px,
    var(--yellow) 8px 16px,
    var(--teal) 16px 24px
  );
  opacity: 0.85;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  background: var(--pink);
  color: #fff;
  border: var(--line);
  box-shadow: var(--shadow-sm);
  transform: rotate(-6deg);
  transition: transform 0.35s var(--ease);
}

.logo:hover .logo-icon {
  transform: rotate(8deg) scale(1.08);
  background: var(--teal);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: 0.18s ease;
  position: relative;
}

.main-nav a:hover {
  background: var(--yellow);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
  transform: translate(-1px, -1px);
}

.nav-cta {
  padding: 9px 22px !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-weight: 800 !important;
  background: var(--ink) !important;
  border: var(--line) !important;
  box-shadow: var(--shadow-sm);
  transition: 0.18s ease;
}

.nav-cta:hover {
  background: var(--pink) !important;
  box-shadow: var(--shadow) !important;
  transform: translate(-2px, -2px) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--yellow);
  border: var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 150px;
  padding-bottom: 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 88% 18%, var(--pink-soft) 0%, transparent 62%),
    radial-gradient(ellipse 55% 60% at 6% 88%, var(--teal-soft) 0%, transparent 60%),
    var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 3px dashed rgba(43, 27, 61, 0.22);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(43, 27, 61, 0.16) 1.6px, transparent 1.7px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 75% 50%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 70% at 75% 50%, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: var(--yellow);
  border: var(--line);
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-shadow: 5px 5px 0 rgba(255, 93, 143, 0.24);
}

.hero p {
  font-size: 1.08rem;
  opacity: 0.78;
  max-width: 560px;
  margin-bottom: 38px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--line);
  box-shadow: var(--shadow-lg);
  background: #fff;
  transform: rotate(1.5deg);
  transition: transform 0.4s var(--ease);
}

.hero-image:hover { transform: rotate(-1deg) translateY(-4px); }

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  cursor: pointer;
  border: var(--line);
  text-decoration: none;
  transition: 0.18s var(--ease);
  position: relative;
  white-space: nowrap;
}

.btn:active { transform: translate(3px, 3px) !important; box-shadow: none !important; }

.btn-primary {
  color: #fff;
  background: var(--pink);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translate(-3px, -3px);
}

.btn-outline {
  background: #fff;
  border: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-outline:hover {
  background: var(--yellow);
  box-shadow: var(--shadow-lg);
  transform: translate(-3px, -3px);
}

/* ---------- 标签 / 标题 ---------- */
.section-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  border: var(--line);
  box-shadow: var(--shadow-sm);
  transform: rotate(-1.5deg);
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.section-desc {
  max-width: 620px;
  opacity: 0.72;
  margin-bottom: 46px;
  font-size: 1rem;
  font-weight: 500;
}

.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ---------- 卡片网格 ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

.category-card {
  border-radius: var(--radius);
  padding: 30px 26px;
  background: #fff;
  border: var(--line);
  box-shadow: var(--shadow);
  transition: 0.24s var(--ease);
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-image: radial-gradient(rgba(43, 27, 61, 0.18) 1.6px, transparent 1.7px);
  background-size: 10px 10px;
  opacity: 0.55;
  transition: 0.3s ease;
}

.category-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-pink);
  background: var(--cream-2);
}

.category-card:hover::after {
  transform: scale(1.25) rotate(20deg);
  opacity: 0.9;
}

.category-card:nth-child(3n+2):hover { box-shadow: var(--shadow-teal); }
.category-card:nth-child(3n+3):hover { box-shadow: 6px 6px 0 var(--yellow); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.35rem;
  background: var(--yellow-soft);
  border: var(--line);
  box-shadow: var(--shadow-sm);
  transform: rotate(-4deg);
  transition: 0.3s var(--ease);
}

.category-card:hover .card-icon {
  transform: rotate(6deg) scale(1.06);
  background: var(--pink);
}

.category-card:nth-child(3n+2) .card-icon { background: var(--teal-soft); }
.category-card:nth-child(3n+3) .card-icon { background: var(--pink-soft); }

.category-card h3 {
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 18px;
  font-weight: 500;
}

.card-link {
  font-weight: 900;
  font-size: 0.84rem;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2.5px solid var(--pink);
  padding-bottom: 2px;
  transition: 0.2s ease;
}

.card-link:hover {
  color: var(--pink);
  gap: 12px;
  border-bottom-color: var(--teal);
}

/* ---------- 特性块 ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--line);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
  background: #fff;
  transition: transform 0.4s var(--ease);
}

.feature-image:hover { transform: rotate(1deg); }

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.feature-text h2,
.feature-text h3 {
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.feature-text p { opacity: 0.74; margin-bottom: 22px; font-weight: 500; }

.feature-list {
  list-style: none;
  display: grid;
  gap: 4px;
}

.feature-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px dashed rgba(43, 27, 61, 0.18);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--ink);
  font-size: 0.75rem;
}

/* ---------- 数据条 ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 30px 18px;
  border-radius: var(--radius);
  background: #fff;
  border: var(--line);
  box-shadow: var(--shadow);
  transition: 0.24s var(--ease);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--pink);
  border-bottom: 2px solid var(--ink);
}

.stat-item:nth-child(2)::before { background: var(--yellow); }
.stat-item:nth-child(3)::before { background: var(--teal); }
.stat-item:nth-child(4)::before { background: var(--lavender); }

.stat-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
}

.stat-number {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.1;
  color: var(--ink);
}

.stat-item:nth-child(odd) .stat-number { color: var(--pink); }
.stat-item:nth-child(even) .stat-number { color: var(--teal); }

.stat-label {
  font-size: 0.86rem;
  opacity: 0.68;
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ---------- 内容墙 ---------- */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.content-wall-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: var(--line);
  box-shadow: var(--shadow);
  transition: 0.26s var(--ease);
  position: relative;
}

.content-wall-item:hover {
  transform: translate(-4px, -4px) rotate(-0.6deg);
  box-shadow: 8px 8px 0 var(--pink);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  border-bottom: var(--line);
  filter: saturate(1.08);
  transition: transform 0.5s var(--ease);
}

.content-wall-item:hover img { transform: scale(1.05); }

.content-wall-body {
  padding: 22px 22px 24px;
  background: #fff;
}

.content-wall-body h3,
.content-wall-body h4 {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.content-wall-body p {
  font-size: 0.88rem;
  opacity: 0.7;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: 0.22s var(--ease);
}

.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.faq-item.open {
  background: var(--yellow-soft);
  box-shadow: var(--shadow-pink);
  transform: translate(-3px, -3px);
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.faq-item .faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  border: 2px solid var(--ink);
  font-weight: 900;
  font-size: 1rem;
  transition: 0.25s var(--ease);
}

.faq-item.open .faq-question::after {
  content: '−';
  background: var(--teal);
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.78;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.75;
  border-top: 1.5px dashed rgba(43, 27, 61, 0.22);
  margin-top: 2px;
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }

/* ---------- CTA 横幅 ---------- */
.cta-banner {
  padding: 64px 32px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.45) 0%, transparent 42%),
    linear-gradient(125deg, var(--pink) 0%, #FF7FB0 42%, var(--teal) 100%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(43, 27, 61, 0.22) 1.6px, transparent 1.7px);
  background-size: 14px 14px;
  opacity: 0.5;
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  text-shadow: 3px 3px 0 rgba(43, 27, 61, 0.28);
}

.cta-banner p {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto 30px;
  font-weight: 600;
  opacity: 0.95;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--ink);
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--ink);
  transform: translate(-3px, -3px);
}

/* ---------- 页脚 ---------- */
.site-footer {
  padding: 68px 0 30px;
  background: var(--lavender);
  border-top: 3px solid var(--ink);
  position: relative;
  color: var(--ink);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--pink) 0 14px,
    var(--yellow) 14px 28px,
    var(--teal) 28px 42px
  );
}

.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-brand {
  font-size: 0.9rem;
  opacity: 0.72;
  font-weight: 500;
  line-height: 1.8;
}

.footer-brand strong,
.footer-brand .logo {
  opacity: 1;
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--pink);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.72;
  transition: 0.18s ease;
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--pink);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 2px solid rgba(43, 27, 61, 0.18);
  margin-top: 46px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.68;
}

/* ---------- 工具类 ---------- */
.text-accent {
  color: var(--pink);
  font-weight: 900;
}

.text-center { text-align: center; }

.seo-description {
  max-width: 640px;
  margin: 0 auto 48px;
  opacity: 0.72;
  font-weight: 500;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .footer-grid { gap: 32px; }
  .feature-block { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .feature-block { grid-template-columns: 1fr; gap: 34px; }
  .feature-image { transform: rotate(0deg); }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .hero { padding-top: 130px; padding-bottom: 64px; min-height: auto; }
  .hero h1 { text-shadow: 3px 3px 0 rgba(255, 93, 143, 0.22); }

  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--cream);
    padding: 22px 24px 28px;
    gap: 8px;
    border-bottom: 3px solid var(--ink);
    box-shadow: 0 14px 0 rgba(43, 27, 61, 0.08);
  }

  .main-nav.open li { width: 100%; }

  .main-nav.open a {
    display: block;
    width: 100%;
    border-radius: 12px;
    padding: 12px 16px;
    border: 2px solid var(--ink);
    background: #fff;
    box-shadow: var(--shadow-sm);
    font-weight: 700;
  }

  .main-nav.open .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .cta-banner { padding: 48px 22px; box-shadow: 6px 6px 0 var(--ink); border-radius: 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }

  .cards-grid,
  .content-wall,
  .stats-bar { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }

  .section-label { font-size: 0.68rem; letter-spacing: 0.16em; }

  .faq-item .faq-question { padding: 15px 18px; font-size: 0.92rem; }
  .faq-item .faq-answer { padding-left: 18px; padding-right: 18px; }

  .stat-item { padding: 24px 14px; }
}