```css
/* ============================================
   红桃影视 · 帧藏万象
   "Red Heart Cinema" 编辑式温感设计体系
   色彩: 奶油白 + 樱桃红 + 柔玫瑰粉 + 浓缩咖啡棕
   理念: 电影感 | 杂志排版 | 红桃符号叙事
   ============================================ */

:root {
  --hrt-red: #D4373F;
  --hrt-rose: #F0A0A8;
  --hrt-cream: #FAF7F2;
  --hrt-beige: #F0E9E1;
  --hrt-espresso: #3A322E;
  --hrt-border: rgba(58, 50, 46, 0.08);
  --hrt-shadow: rgba(212, 55, 63, 0.14);
}

/* ---------- 基础重置 ---------- */
*, *::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(--hrt-cream);
  color: var(--hrt-espresso);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  counter-reset: section;
}

/* 全站细微波点纹理 */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(58,50,46,0.025) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 9999;
}

/* ---------- 核心布局 ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section {
  padding: 80px 0;
  counter-increment: section;
  position: relative;
}

.section:nth-child(even) {
  background: var(--hrt-beige);
}

/* 章节左上角计数标签 */
.section::before {
  content: counter(section, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 32px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--hrt-red);
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

/* ---------- 导航 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hrt-border);
  box-shadow: 0 2px 20px rgba(58, 50, 46, 0.04);
}

/* 导航底部桃心渐入红细线 */
.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(212,55,63,0.36) 50%, transparent 92%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.28rem;
  text-decoration: none;
  color: var(--hrt-espresso);
  letter-spacing: 2px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hrt-red), var(--hrt-rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px var(--hrt-shadow);
  position: relative;
}

.logo-icon::before {
  content: '♥';
  font-size: 0.95rem;
  color: #fff;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hrt-espresso);
  opacity: 0.85;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--hrt-red);
  border-radius: 2px;
  transition: width 0.35s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--hrt-red);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--hrt-red), var(--hrt-rose));
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px var(--hrt-shadow);
  transition: all 0.35s ease !important;
  opacity: 1 !important;
  letter-spacing: 0.5px;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 55, 63, 0.32);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--hrt-espresso);
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 20px; width: 55%; right: 10px; left: auto; }
.menu-toggle span:nth-child(3) { top: 27px; }

/* ---------- 首页 Hero ---------- */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #FAF7F2 0%, #F4E8E0 50%, #FCF8F4 100%);
  padding-top: 70px;
}

/* 超大桃心水印 */
.hero::after {
  content: '♥';
  position: absolute;
  right: -4%;
  bottom: -12%;
  font-size: 46vw;
  line-height: 1;
  color: var(--hrt-red);
  opacity: 0.045;
  pointer-events: none;
  transform: rotate(-14deg);
  transition: transform 1.2s ease;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 55, 63, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
  padding: 56px 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(212,55,63,0.1), rgba(240,160,168,0.2));
  color: var(--hrt-red);
  letter-spacing: 2.5px;
  border: 1px solid rgba(212, 55, 63, 0.14);
}

.hero-eyebrow::before {
  content: '♥';
  margin-right: 8px;
  font-size: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--hrt-espresso);
}

.hero h1 .text-accent {
  background: linear-gradient(135deg, var(--hrt-red), var(--hrt-rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .text-outline {
  -webkit-text-stroke: 1.5px var(--hrt-red);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.62;
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

/* Hero 底部数据条 */
.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 55, 63, 0.12);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-item strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hrt-red);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-stat-item span {
  font-size: 0.82rem;
  opacity: 0.5;
  letter-spacing: 1px;
  margin-top: 2px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(58, 50, 46, 0.14);
  position: relative;
  transform: perspective(1200px) rotateY(-4deg);
  transition: transform 0.6s ease;
}

.hero-image:hover {
  transform: perspective(1200px) rotateY(0deg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.35s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--hrt-red) 0%, var(--hrt-rose) 100%);
  box-shadow: 0 6px 24px rgba(212, 55, 63, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212, 55, 63, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--hrt-espresso);
  color: var(--hrt-espresso);
  opacity: 0.8;
}

.btn-outline:hover {
  border-color: var(--hrt-red);
  color: var(--hrt-red);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 55, 63, 0.1);
}

/* ---------- 标签 / 标题 ---------- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 12px;
  color: var(--hrt-red);
  text-transform: uppercase;
  padding-top: 16px;
  position: relative;
}

.section-label::before {
  content: '♥';
  margin-right: 8px;
  font-size: 0.7rem;
}

.section-label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--hrt-red), transparent);
  border-radius: 2px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--hrt-espresso);
  line-height: 1.25;
}

.section-title .text-accent {
  background: linear-gradient(135deg, var(--hrt-red), var(--hrt-rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 600px;
  opacity: 0.62;
  margin-bottom: 40px;
  line-height: 1.85;
}

/* ---------- 卡片网格 ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--hrt-border);
  background: #FFFFFF;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(212, 55, 63, 0.12) 0%, transparent 70%);
  transition: transform 0.5s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--hrt-red);
  border-left: 3px solid var(--hrt-red);
  border-top-left-radius: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212, 55, 63, 0.1);
  border-color: rgba(212, 55, 63, 0.16);
}

.category-card:hover::before { transform: scale(1.8); }
.category-card:hover::after { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 55, 63, 0.1), rgba(240, 160, 168, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  color: var(--hrt-red);
  position: relative;
  z-index: 1;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--hrt-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.card-link:hover { gap: 14px; }

/* ---------- 特性块 ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 70px rgba(58, 50, 46, 0.12);
}

.feature-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  display: block;
}

.feature-image:hover img { transform: scale(1.04); }

.feature-image::after {
  content: '♥';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--hrt-red);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-text { position: relative; }

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '♥';
  font-weight: 700;
  color: var(--hrt-red);
  font-size: 0.72rem;
  background: rgba(212, 55, 63, 0.1);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- 数据条 ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 34px 20px;
  border-radius: 20px;
  border: 1px solid var(--hrt-border);
  background: #fff;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.stat-item::before {
  content: '♥';
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 3.2rem;
  color: var(--hrt-red);
  opacity: 0.06;
  transform: rotate(15deg);
  line-height: 1;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px var(--hrt-shadow);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--hrt-red), var(--hrt-rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-number::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hrt-red);
  margin-left: 4px;
  vertical-align: super;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  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: 18px;
  overflow: hidden;
  border: 1px solid var(--hrt-border);
  background: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.content-wall-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-bottom: 3px solid var(--hrt-red);
  border-right: 3px solid var(--hrt-red);
  border-bottom-right-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(212, 55, 63, 0.12);
}

.content-wall-item:hover::after { opacity: 1; }

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.content-wall-item:hover img { transform: scale(1.05); }

.content-wall-body { padding: 24px 22px; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--hrt-border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 55, 63, 0.2);
  box-shadow: 0 4px 20px rgba(212, 55, 63, 0.06);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--hrt-espresso);
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1rem;
  color: var(--hrt-red);
  transition: transform 0.35s ease, background 0.3s ease;
  font-weight: 600;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 55, 63, 0.08);
  flex-shrink: 0;
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.7;
  line-height: 1.85;
  font-size: 0.95rem;
}

.faq-item.open {
  border-color: rgba(212, 55, 63, 0.28);
  box-shadow: 0 8px 28px rgba(212, 55, 63, 0.08);
}

.faq-item.open .faq-question {
  color: var(--hrt-red);
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--hrt-red);
  color: #fff;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- CTA 横幅 ---------- */
.cta-banner {
  padding: 64px 24px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--hrt-red) 0%, #E05A67 50%, var(--hrt-rose) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(212, 55, 63, 0.32);
}

.cta-banner::before {
  content: '♥ ♥ ♥ ♥ ♥';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 24px;
  white-space: nowrap;
  line-height: 1;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 24px,
    rgba(255, 255, 255, 0.02) 24px,
    rgba(255, 255, 255, 0.02) 48px
  );
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
  opacity: 0.9;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--hrt-red);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

/* ---------- 页脚 ---------- */
.site-footer {
  padding: 56px 0 28px;
  background: var(--hrt-beige);
  border-top: 1px solid rgba(212, 55, 63, 0.1);
  position: relative;
}

.site-footer::before {
  content: '♥';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hrt-cream);
  padding: 0 16px;
  color: var(--hrt-red);
  font-size: 0.9rem;
  border-radius: 50%;
  line-height: 20px;
  height: 20px;
}

.site-footer .container { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.85;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--hrt-espresso);
}

.footer-col a {
  display: block;
  color: var(--hrt-espresso);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.58;
  padding: 4px 0;
  transition: opacity 0.2s ease, padding-left 0.2s ease, color 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--hrt-red);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(58, 50, 46, 0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  letter-spacing: 0.5px;
}

/* ---------- 工具类 ---------- */
.text-accent {
  color: var(--hrt-red);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.62;
  line-height: 1.9;
}

.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);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--hrt-cream);
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    border-bottom: 1px solid var(--hrt-border);
    box-shadow: 0 24px 50px rgba(58, 50, 46, 0.1);
  }

  .main-nav.open {
    display: flex;
    animation: fadeInUp 0.3s ease;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .hero-stat-item strong {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-image {
    margin-top: 24px;
  }

  .section::before {
    top: 16px;
    right: 20px;
    font-size: 0.7rem;
  }

  .section {
    padding: 60px 0;
  }

}

@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: stretch;
  }

  .hero h1 {
    font-size: 1.95rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
    opacity: 0.65;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .btn {
    justify-content: center;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stat-item {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }

  .hero-stat-item strong {
    min-width: 60px;
  }

  .hero-stat-item span {
    margin-top: 0;
  }

}