/* =================================================================
   每日大赛 mrds.fun · 独特设计系统
   风格：暖调切面 / Faceted Warmth
   配色：奶油米白 × 珊瑚橙 × 深青 × 橄榄绿
   语言：利落斜切几何 + 编辑式排版
   ================================================================= */

:root {
  --cream: #FAF4EC;
  --linen: #F3EDE3;
  --surface: #FFFDF9;
  --coral: #FF5D45;
  --coral-soft: #FF8A70;
  --teal: #1E4A4A;
  --teal-soft: #3B6363;
  --olive: #7A8B4F;
  --mustard: #E8B54D;
  --ink: #2A2A28;
  --muted: #7A7A75;
  --line: #E5D9CC;
}

/* 基础重置 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--coral); color: #fff; }

html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 12px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

img { display: block; max-width: 100%; }

/* =========================================
   核心布局
   ========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--linen);
  box-shadow: inset 0 1px 0 rgba(122, 139, 79, 0.08), inset 0 -1px 0 rgba(122, 139, 79, 0.08);
}

/* =========================================
   导航 — 固定顶部 · 奶油玻璃
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 244, 236, 0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(229, 217, 204, 0.7);
}

.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.25rem;
  text-decoration: none;
  color: var(--teal);
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px 4px 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--coral), var(--mustard));
  color: #fff;
  font-weight: 900;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: 0 4px 12px rgba(255, 93, 69, 0.35);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 2px;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: 2px !important;
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(255, 93, 69, 0.3);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 93, 69, 0.4);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(var(--teal), var(--teal)),
                    linear-gradient(var(--teal), var(--teal)),
                    linear-gradient(var(--teal), var(--teal));
  background-size: 18px 2.5px, 18px 2.5px, 18px 2.5px;
  background-position: 11px 12px, 11px 20px, 11px 28px;
  background-repeat: no-repeat;
  transition: background-color 0.2s;
}

.menu-toggle:hover { background-color: var(--linen); }

/* =========================================
   Hero — 编辑式大排版
   ========================================= */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -12%;
  top: 10%;
  width: 60%;
  height: 70%;
  background: linear-gradient(135deg, rgba(255, 93, 69, 0.14) 0%, rgba(232, 181, 77, 0.04) 100%);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background-image: radial-gradient(rgba(30, 74, 74, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.25;
  pointer-events: none;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: 2px 24px 24px 24px;
  background: var(--mustard);
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(232, 181, 77, 0.25);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--teal);
  position: relative;
}

.hero h1::after {
  content: '';
  display: block;
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--mustard));
  margin-top: 12px;
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
  border-left: 3px solid var(--coral);
  padding-left: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 20px 20px 20px 4px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 24px 24px 0 rgba(30, 74, 74, 0.06);
  transform: rotate(1.2deg);
  transition: transform 0.4s ease;
}

.hero-image:hover { transform: rotate(0deg) scale(1.01); }

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   按钮 — 切角几何
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s, filter 0.25s, background 0.25s, color 0.25s;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
  color: #fff;
  filter: drop-shadow(0 6px 14px rgba(255, 93, 69, 0.35));
}

.btn-primary:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 10px 22px rgba(255, 93, 69, 0.45));
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
  box-shadow: inset 0 0 0 2.5px var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 16px rgba(30, 74, 74, 0.3));
}

/* =========================================
   标签 / 标题
   ========================================= */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 14px;
  color: var(--coral);
  text-transform: uppercase;
  position: relative;
  padding-left: 36px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 2px;
  background: var(--coral);
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--teal);
}

.section-desc {
  max-width: 620px;
  color: var(--muted);
  margin-bottom: 44px;
  font-size: 1rem;
}

/* =========================================
   卡片网格 — 暖白浮层 + 切角图标
   ========================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 16px 4px 16px 4px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--mustard));
  border-radius: 0 4px 4px 0;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(30, 74, 74, 0.08);
  border-color: rgba(255, 93, 69, 0.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px 4px 14px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 93, 69, 0.12), rgba(232, 181, 77, 0.08));
  color: var(--coral);
  transition: background 0.3s, color 0.3s;
}

.category-card:hover .card-icon {
  background: linear-gradient(135deg, var(--coral), var(--mustard));
  color: #fff;
}

.category-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 10px;
  line-height: 1.6;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--coral);
  margin-top: 18px;
  display: inline-block;
  position: relative;
  transition: letter-spacing 0.25s;
}

.card-link::after {
  content: '→';
  margin-left: 4px;
  transition: transform 0.2s;
  display: inline-block;
}

.card-link:hover { letter-spacing: 0.06em; }
.card-link:hover::after { transform: translateX(4px); }

/* =========================================
   特性块 — 切面图像 + 编辑式布局
   ========================================= */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 16px 16px 0 rgba(255, 93, 69, 0.08);
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 93, 69, 0.08), transparent 60%);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.feature-text {
  padding: 8px 0;
}

.feature-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 14px;
  line-height: 1.3;
}

.feature-text p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(229, 217, 204, 0.7);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  color: #fff;
  background: var(--olive);
  width: 22px;
  height: 22px;
  border-radius: 6px 2px 6px 2px;
  display: inline-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: 28px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: 16px 4px 16px 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--mustard));
  opacity: 0.6;
  transition: opacity 0.3s;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 74, 74, 0.08);
}

.stat-item:hover::before { opacity: 1; }

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--coral);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

/* =========================================
   内容墙 — 图文瀑布
   ========================================= */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 16px 4px 16px 4px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(30, 74, 74, 0.1);
  border-color: rgba(255, 93, 69, 0.2);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.content-wall-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================
   FAQ — 折叠 + 俏皮加减
   ========================================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px 4px 14px 4px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 93, 69, 0.3);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--teal);
  font-size: 1rem;
  transition: color 0.2s;
}

.faq-item .faq-question::after {
  content: '＋';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--coral);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  flex-shrink: 0;
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px dashed rgba(229, 217, 204, 0.8);
  padding-top: 14px;
  margin-left: 12px;
  margin-right: 12px;
}

.faq-item.open {
  border-color: rgba(255, 93, 69, 0.4);
  box-shadow: 0 8px 20px rgba(255, 93, 69, 0.06);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

/* =========================================
   CTA 横幅 — 暖色渐变冲击
   ========================================= */
.cta-banner {
  padding: 64px 40px;
  text-align: center;
  border-radius: 20px 6px 20px 6px;
  background: linear-gradient(130deg, var(--coral) 0%, #FF7B5A 30%, var(--mustard) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 12px 28px rgba(255, 93, 69, 0.25));
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -60%;
  width: 55%;
  height: 220%;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(24deg);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  left: -5%;
  bottom: -40%;
  width: 30%;
  height: 180%;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(-18deg);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  position: relative;
  z-index: 1;
  opacity: 0.92;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: var(--surface);
  color: var(--coral);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

.cta-banner .btn-primary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

/* =========================================
   页脚 — 奶油底 · 无缝连接
   ========================================= */
.site-footer {
  background: var(--cream);
  padding: 64px 0 28px;
  border-top: 3px solid var(--coral);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 120px;
  height: 3px;
  background: var(--mustard);
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.65;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
  color: var(--coral);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}

/* =========================================
   工具类
   ========================================= */
.text-accent {
  color: var(--coral);
  font-weight: 800;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 620px;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* =========================================
   响应式 — 移动优先
   ========================================= */
@media (max-width: 768px) {
  .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: rgba(250, 244, 236, 0.98);
    backdrop-filter: blur(18px);
    padding: 28px 24px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(30, 74, 74, 0.08);
  }

  .main-nav.open a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(229, 217, 204, 0.5);
    font-size: 1rem;
  }

  .main-nav.open a:last-child { border-bottom: none; }

  .main-nav.open .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .hero::before {
    width: 90%;
    right: -30%;
    opacity: 0.5;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .cta-banner {
    padding: 48px 24px;
    border-radius: 16px 4px 16px 4px;
  }

  .cta-banner::before {
    transform: rotate(35deg);
    top: -30%;
  }

  .footer-col {
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .feature-block {
    gap: 28px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .content-wall-item img {
    height: 180px;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }
}