```css
/* ================================================================
   看片神器 · 万影随行 — Design System
   "WARM CINEMA ARCHIVE" 温暖影史 · 纸感剧场
   © kanpian.he.cn
   ================================================================ */

:root {
  --cream: #FDF8F0;
  --cream-deep: #F5ECDD;
  --paper: #FFFEFA;
  --coral: #FF5A3C;
  --coral-deep: #E84422;
  --teal: #0AA4A4;
  --teal-deep: #087E7E;
  --ink: #1D1D1B;
  --ink-soft: #5C5650;
  --sand: #C9BBA8;
  --line: rgba(29, 29, 27, 0.08);
  --shadow: 0 16px 40px rgba(180, 110, 60, 0.12);
  --shadow-lg: 0 24px 64px rgba(180, 110, 60, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
}

/* ========== 基础重置 ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  scrollbar-width: thin;
  scrollbar-color: var(--sand) var(--cream);
}

/* 整体胶片颗粒感 */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    rgba(0, 0, 0, 0.006) 3px 4px
  );
  pointer-events: none;
  z-index: 9999;
}

::selection {
  background: var(--coral);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--coral);
}

/* ========== 核心布局 ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section:nth-child(even) {
  background: var(--cream-deep);
}

/* ========== 导航 — 固定顶部 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.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: 9px;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 90, 60, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--ink);
}
.main-nav a:hover::after {
  width: 100%;
}

.main-nav .nav-cta::after {
  display: none;
}

.nav-cta {
  background: var(--coral) !important;
  color: #fff !important;
  padding: 8px 24px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(255, 90, 60, 0.28);
  transition: all 0.25s ease !important;
}

.nav-cta:hover {
  background: var(--coral-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 90, 60, 0.32);
}

/* ========== 汉堡菜单按钮 ========== */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.menu-toggle::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  top: 14px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  box-shadow: 0 8px 0 var(--ink);
  transition: all 0.3s ease;
}

.menu-toggle::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 14px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.open::before {
  transform: rotate(45deg) translateY(5px);
  box-shadow: none;
}

.menu-toggle.open::after {
  transform: rotate(-45deg) translateY(-5px);
}

/* ========== 首页 Hero — 双栏电影镜头 ========== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(255, 90, 60, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 85%, rgba(10, 164, 164, 0.05) 0%, transparent 45%),
    var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 85%;
  background: linear-gradient(135deg, rgba(255, 90, 60, 0.07), transparent 70%);
  transform: skewX(-15deg);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 8px,
    rgba(29, 29, 27, 0.03) 8px 12px,
    transparent 12px 20px
  );
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px 6px 12px;
  border-radius: 100px;
  background: var(--coral);
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(255, 90, 60, 0.25);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero-image {
  flex: 0 0 360px;
  height: 470px;
  border-radius: 20px 20px 20px 4px;
  overflow: hidden;
  position: relative;
  transform: rotate(1.5deg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #FFB099, var(--coral-deep));
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--coral);
  border-radius: 24px 8px 24px 8px;
  z-index: -1;
  opacity: 0.25;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image:hover img {
  transform: scale(1.04);
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 90, 60, 0.28);
}

.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 90, 60, 0.32);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(10, 164, 164, 0.05);
  transform: translateY(-3px);
}

/* ========== 标签 / 标题 ========== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
  position: relative;
  padding-left: 26px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.section-label::after {
  content: '▍';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--teal);
  opacity: 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-desc {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

/* ========== 卡片网格 — 电影票根 ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px var(--radius) var(--radius) 4px;
  padding: 30px 30px 30px 34px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card::before {
  content: '';
  position: absolute;
  right: 8px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--line) 0 4px,
    transparent 4px 10px
  );
  opacity: 0.5;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 90, 60, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 90, 60, 0.1), rgba(255, 90, 60, 0.04));
}

.category-card:nth-child(even) .card-icon {
  background: linear-gradient(135deg, rgba(10, 164, 164, 0.1), rgba(10, 164, 164, 0.04));
}

.category-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--coral);
  transition: gap 0.25s ease;
}

.card-link:hover {
  gap: 12px;
}

/* ========== 特性块 ========== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-image {
  border-radius: 20px 20px 20px 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.feature-image:hover img {
  transform: scale(1.03);
}

.feature-text {
  padding: 20px 0;
}

.feature-text h3 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.feature-text > p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--ink);
}

.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(10, 164, 164, 0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========== 数据条 — 胶片计数 ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 20px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--coral) 0 8px,
    transparent 8px 16px,
    var(--teal) 16px 24px,
    transparent 24px 32px
  );
  opacity: 0.45;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-number small {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* ========== 内容墙 — 海报陈列 ========== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-wall-item::before {
  content: '▶';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 90, 60, 0.92);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding-left: 3px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 90, 60, 0.35);
}

.content-wall-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 90, 60, 0.15);
}

.content-wall-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.content-wall-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-wall-item:hover img {
  transform: scale(1.06);
}

.content-wall-body {
  padding: 22px;
}

.content-wall-body h4 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.content-wall-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ========== FAQ — 票根问答 ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 90, 60, 0.25);
}

.faq-item.open {
  border-color: rgba(255, 90, 60, 0.4);
  box-shadow: 0 8px 24px rgba(255, 90, 60, 0.08);
}

.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--coral);
  color: #fff;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 800;
}

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 90, 60, 0.08);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--coral);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--coral);
  color: #fff;
}

.faq-question > * {
  flex: 1;
}

.faq-answer {
  padding: 0 22px 18px 52px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-item .faq-answer {
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========== CTA 横幅 — 灯箱片 ========== */
.cta-banner {
  background: linear-gradient(120deg, var(--coral) 0%, #FF7A5C 50%, #FF967A 100%);
  padding: 64px 40px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 90, 60, 0.28);
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  height: 8px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.85) 2.5px, transparent 3px);
  background-size: 16px 8px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.6;
}

.cta-banner::before {
  top: 16px;
}

.cta-banner::after {
  bottom: 16px;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 8px 20px rgba(160, 40, 0, 0.2);
}

.cta-banner .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-3px);
}

/* ========== 页脚 ========== */
.site-footer {
  background: var(--cream-deep);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ink);
}

.footer-col a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 5px 0;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(29, 29, 27, 0.08);
  margin-top: 40px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ========== 工具类 ========== */
.text-accent {
  color: var(--coral);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.8;
  opacity: 0.8;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--cream);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    list-style: none;
    z-index: 999;
  }

  .main-nav.open a {
    font-size: 1.05rem;
    padding: 8px 4px;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    padding: 12px 24px !important;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero {
    flex-direction: column;
    padding: 120px 24px 60px;
    text-align: center;
    gap: 48px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    height: 400px;
    transform: none;
  }

  .faq-answer {
    padding-left: 22px;
  }

  .cta-banner {
    padding: 48px 24px;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 110px 20px 50px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-banner {
    border-radius: 16px;
    padding: 44px 20px;
  }
}