/* ================================================
   蜜桃传媒 · Liquid Peach Design System
   Awwwards-Level Creative CSS
   ================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #FF6B5E;
  --primary-dark: #E85D50;
  --secondary: #FFB4A2;
  --secondary-light: #FFE8E0;
  --accent: #00B8A9;
  --accent-rgb: 0, 184, 169;
  --bg: #FFF9F5;
  --bg-alt: #FFF0E8;
  --card-bg: #FFFFFF;
  --text-main: #3D2C29;
  --text-light: #8A7B78;
  --border-soft: rgba(61, 44, 41, 0.08);
  --shadow-soft: 0 4px 20px rgba(255, 107, 94, 0.08);
  --shadow-hover: 0 12px 36px rgba(255, 107, 94, 0.16);
  --radius-card: 16px;
  --radius-btn: 24px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* ===== 核心布局 ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; position: relative; overflow: hidden; }

.section:nth-child(even) {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 162, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section:nth-child(odd)::after {
  top: 10%;
  right: -60px;
}

.section:nth-child(even)::after {
  bottom: 10%;
  left: -60px;
  background: radial-gradient(circle, rgba(0, 184, 169, 0.06) 0%, transparent 70%);
}

.section > * { position: relative; z-index: 1; }

/* ===== 导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 249, 245, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s;
}

.site-header:hover {
  box-shadow: 0 4px 30px rgba(255, 107, 94, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--text-main);
  letter-spacing: -0.02em;
  transition: opacity 0.3s;
}

.logo:hover { opacity: 0.85; }

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 94, 0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s, transform 0.3s;
  position: relative;
  letter-spacing: 0.02em;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: transform 0.3s;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--primary);
}

.main-nav a:not(.nav-cta):hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 107, 94, 0.25);
  transition: box-shadow 0.3s, transform 0.3s !important;
  letter-spacing: 0.04em;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  box-shadow: 0 6px 24px rgba(255, 107, 94, 0.35);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: background 0.3s;
}

.menu-toggle:hover { background: var(--secondary-light); }

/* ===== Hero ===== */
.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 180, 162, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 20%, rgba(0, 184, 169, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 44% 56% 62% 38% / 54% 44% 56% 46%;
  background: radial-gradient(circle, rgba(255, 107, 94, 0.18), transparent 65%);
  animation: blobFloat 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 60% 40% 55% 45% / 48% 52% 48% 52%;
  background: radial-gradient(circle, rgba(0, 184, 169, 0.08), transparent 60%);
  animation: blobFloat 18s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { transform: translate(20px, -20px) rotate(6deg) scale(1.03); }
}

.hero-content { max-width: 720px; position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 24px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--secondary-light), rgba(255, 180, 162, 0.2));
  color: var(--primary-dark);
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 107, 94, 0.2);
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-main) 0%, #A05A4E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(255, 107, 94, 0.12);
  border: 4px solid rgba(255, 255, 255, 0.6);
  transform: rotate(2deg);
  transition: transform 0.4s;
}

.hero-image:hover { transform: rotate(0deg) scale(1.01); }

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 94, 0.08), transparent 60%);
  border-radius: 28px;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 107, 94, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 94, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 107, 94, 0.25);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--secondary-light);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== 标签/标题 ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  color: var(--primary);
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--secondary-light), transparent);
  padding: 4px 12px;
  border-radius: 16px;
  border-left: 3px solid var(--primary);
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.section-desc {
  max-width: 600px;
  color: var(--text-light);
  margin-bottom: 44px;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ===== 卡片网格 ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: var(--radius-card);
  padding: 32px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary-light), var(--bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.category-card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
}

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.category-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
}

.card-link:hover {
  gap: 8px;
}

/* ===== 特性块 ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-light), var(--bg-alt));
  border: 3px solid #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s, box-shadow 0.4s;
}

.feature-image:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-hover);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s;
}

.feature-image:hover img {
  transform: scale(1.03);
}

.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-text p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(0, 184, 169, 0.7));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== 数据条 ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s, width 0.3s;
}

.stat-item:hover {
  box-shadow: var(--shadow-hover);
}

.stat-item:hover::before {
  opacity: 1;
  width: 100%;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.6;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===== 内容墙 ===== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--card-bg);
  transition: all var(--transition);
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.content-wall-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.6s;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 22px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.content-wall-body p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.content-wall-body .card-link {
  font-size: 0.82rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--card-bg);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 107, 94, 0.3);
}

.faq-item.open {
  border-color: rgba(255, 107, 94, 0.2);
  box-shadow: 0 4px 20px rgba(255, 107, 94, 0.08);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--text-main);
  transition: color 0.3s;
}

.faq-item .faq-question::after {
  content: '＋';
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px dashed var(--border-soft);
  padding-top: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== CTA横幅 ===== */
.cta-banner {
  padding: 64px 24px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 40%, #E04A3A 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 107, 94, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* ===== 页脚 ===== */
.site-footer {
  padding: 64px 0 28px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-main);
  letter-spacing: 0.03em;
}

.footer-col a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(61, 44, 41, 0.08);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-light);
}

/* ===== 工具类 ===== */
.text-accent {
  color: var(--primary);
  font-weight: 600;
}

.text-center { text-align: center; }

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.section.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section.text-center .section-label {
  border-left: none;
  border-right: 3px solid var(--primary);
  background: linear-gradient(90deg, transparent, var(--secondary-light));
  padding-left: 12px;
  padding-right: 12px;
}

/* ===== 装饰性水果形状 ===== */
.hero-content::before {
  content: '🍑';
  position: absolute;
  top: -40px;
  right: -80px;
  font-size: 4rem;
  opacity: 0.25;
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  
  .hero { min-height: 70vh; padding: 100px 0 60px; }
  
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255, 249, 245, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 20px 40px rgba(255, 107, 94, 0.08);
  }
  
  .main-nav.open {
    display: flex;
    animation: navSlideIn 0.3s ease-out;
  }
  
  @keyframes navSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .content-wall {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  
  .cta-banner {
    padding: 48px 20px;
    border-radius: 20px;
  }
  
  .cta-banner h2 { font-size: 1.7rem; }
  
  .hero-content::before {
    font-size: 2.5rem;
    right: -20px;
    top: -20px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }
  
  .hero-content::before {
    display: none;
  }
  
  .header-inner {
    height: 64px;
    padding: 0 16px;
  }
  
  .logo {
    font-size: 1.05rem;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-block {
    gap: 24px;
  }
  
  .faq-item .faq-question {
    font-size: 0.92rem;
    padding: 16px 18px;
  }
}