```css
/* ===== 黑料不打烊 · 瓜田日报 复古杂志风 ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --melon-red: #E8433B;
  --vine-green: #2F7047;
  --mustard: #F2C14E;
  --cream: #FAF3E7;
  --paper: #FFFDF7;
  --ink: #1C1A17;
  --ink-soft: #4A443C;
  --line: #D9CFBC;
  --shadow: rgba(60, 40, 10, 0.08);
  --tag-yellow: #FBE8B7;
  --tag-pink: #F5DDD8;
  --tag-green: #DCE8DD;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(232, 67, 59, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 67, 59, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--ink);
  line-height: 1.6;
}

/* 文本选中样式 */
::selection {
  background: var(--melon-red);
  color: #fff;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--mustard);
  border-radius: 0;
  border: 2px solid var(--cream);
}

/* ================= 容器与段落 ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #F7EFE2;
}

/* 报纸切割线装饰 */
.section::after {
  content: "❖ 新鲜瓜田 ❖";
  display: block;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 12px;
  color: rgba(232, 67, 59, 0.35);
  margin-top: 68px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ================= 顶部导航 ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 243, 231, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 3px double var(--line);
  transition: box-shadow 0.3s;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--melon-red) 0 20px, var(--mustard) 20px 40px, var(--vine-green) 40px 60px);
  opacity: 0.6;
}

.site-header:hover {
  box-shadow: 0 8px 30px var(--shadow);
}

.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.3rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.5px;
  position: relative;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 8px;
  background: var(--melon-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: rotate(-8deg);
  box-shadow: 0 2px 0 var(--vine-green);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: "🍉";
  font-size: 1.3rem;
  transform: rotate(8deg);
}

.logo::after {
  content: "每日鲜瓜";
  font-size: 0.6rem;
  background: var(--mustard);
  color: var(--ink);
  padding: 1px 6px;
  border-radius: 3px;
  transform: rotate(-5deg);
  position: absolute;
  right: -46px;
  top: -8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 2px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--melon-red);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--melon-red);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 22px;
  border-radius: 0;
  color: #fff !important;
  font-weight: 700;
  background: var(--melon-red);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  text-transform: uppercase;
  font-size: 0.8rem !important;
  letter-spacing: 1px;
  transition: all 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
  background: #d2352f;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--mustard);
  border: 2px solid var(--ink);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

/* ================= 首页Hero ================= */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 68px;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 193, 78, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(232, 67, 59, 0.15) 0%, transparent 40%),
    var(--paper);
  border-bottom: 2px solid var(--line);
}

.hero::before {
  content: "每日吃瓜";
  position: absolute;
  top: 20%;
  right: -2%;
  font-size: 8vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 67, 59, 0.15);
  pointer-events: none;
  z-index: 0;
  writing-mode: vertical-rl;
  letter-spacing: 20px;
}

.hero::after {
  content: "🍀 瓜田预告 ∷ ∷";
  position: absolute;
  bottom: 28px;
  right: 20px;
  font-size: 0.6rem;
  color: var(--vine-green);
  background: var(--tag-green);
  padding: 4px 12px;
  border: 1px dashed var(--vine-green);
  opacity: 0.7;
  letter-spacing: 2px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 0;
  background: var(--tag-yellow);
  border: 1px solid var(--mustard);
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b4e00;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.06);
}

.hero h1 {
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -2px;
}

.hero h1 .highlight-red {
  color: var(--melon-red);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight-red::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--mustard);
  z-index: -1;
  transform: rotate(-1deg);
}

.hero h1 .highlight-green {
  color: var(--vine-green);
  border-bottom: 3px dotted var(--vine-green);
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
  border-left: 3px solid var(--mustard);
  padding-left: 18px;
}

.hero-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ================= 按钮 ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--ink);
  text-decoration: none;
  transition: all 0.15s ease;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-primary {
  color: #fff;
  background: var(--melon-red);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
  background: #e2352f;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--paper);
}

.btn-outline:hover {
  background: var(--mustard);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
}

/* ================= 标签/标题 ================= */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 12px;
  color: var(--melon-red);
  text-transform: uppercase;
  background: var(--tag-pink);
  padding: 3px 12px;
  border-radius: 2px;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-title::before {
  content: "🍉 ";
  font-size: 1.6rem;
}

.text-accent {
  color: var(--melon-red);
}

.text-center {
  text-align: center;
}

.section-desc {
  max-width: 600px;
  opacity: 0.75;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ================= 卡片网格 ================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: 0;
  padding: 30px 28px;
  border: 2px solid var(--ink);
  background: var(--paper);
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 4px 4px 0 var(--line);
}

.category-card:nth-child(3n+2) {
  background: #FFF9ED;
}

.category-card:nth-child(3n+3) {
  background: #F8F4EC;
}

.category-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--mustard);
  border-color: var(--melon-red);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 50% 8px;
  background: var(--melon-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  transform: rotate(-5deg);
}

.category-card:nth-child(3n+2) .card-icon {
  background: var(--vine-green);
  transform: rotate(5deg);
}

.category-card:nth-child(3n+3) .card-icon {
  background: var(--mustard);
  transform: rotate(-3deg);
  color: var(--ink);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.category-card p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-link {
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--melon-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px dotted var(--melon-red);
  padding-bottom: 2px;
}

.card-link:hover {
  border-bottom-style: solid;
}

/* ================= 特性块 ================= */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--mustard);
  background: var(--tag-green);
  position: relative;
}

.feature-image::after {
  content: "🍃";
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 2rem;
  opacity: 0.6;
  transform: rotate(15deg);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.feature-text h3::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--melon-red);
  margin-top: 10px;
  transform: rotate(-2deg);
}

.feature-text p {
  opacity: 0.7;
  margin-bottom: 22px;
  line-height: 1.9;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  margin-top: 12px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--line);
}

.feature-list li::before {
  content: '🍉';
  font-weight: 700;
  display: inline-block;
  flex-shrink: 0;
}

/* ================= 数据条 ================= */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-radius: 0;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
  position: relative;
}

.stat-item::before {
  content: "●";
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.6rem;
  color: var(--melon-red);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--melon-red);
  line-height: 1;
  display: inline-block;
}

.stat-number::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--mustard);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ================= 内容墙 ================= */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  transition: all 0.2s ease;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--line);
  position: relative;
}

.content-wall-item::after {
  content: "鲜瓜日报";
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--melon-red);
  color: #fff;
  font-size: 0.55rem;
  padding: 3px 10px;
  letter-spacing: 2px;
  font-weight: 700;
  z-index: 2;
}

.content-wall-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--mustard);
  border-color: var(--melon-red);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--ink);
}

.content-wall-body {
  padding: 22px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 800;
}

.content-wall-body .tag-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.content-wall-body .tag {
  font-size: 0.6rem;
  background: var(--tag-yellow);
  border: 1px solid var(--mustard);
  padding: 2px 8px;
  font-weight: 600;
  color: #6b4e00;
  letter-spacing: 0.5px;
}

.content-wall-body .tag.green {
  background: var(--tag-green);
  border-color: var(--vine-green);
  color: var(--vine-green);
}

.content-wall-body .tag.pink {
  background: var(--tag-pink);
  border-color: var(--melon-red);
  color: var(--melon-red);
}

.content-wall-body p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.7;
}

/* ================= FAQ ================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--ink);
  border-radius: 0;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--line);
  transition: background 0.2s;
}

.faq-item:hover {
  background: #FFFDF2;
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  gap: 12px;
}

.faq-item .faq-question::before {
  content: "Q.";
  color: var(--melon-red);
  font-weight: 900;
  margin-right: 8px;
  font-size: 1.3rem;
}

.faq-item .faq-question .chevron {
  font-size: 0.8rem;
  transition: transform 0.3s;
  color: var(--vine-green);
}

.faq-item.open .faq-question .chevron {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  opacity: 0.75;
  line-height: 1.8;
  font-size: 0.92rem;
  border-top: 1px dashed var(--line);
  margin-top: 0;
  padding-top: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ================= CTA横幅 ================= */
.cta-banner {
  padding: 56px 24px;
  text-align: center;
  border-radius: 0;
  background: var(--vine-green);
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--mustard);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.05);
  transform: rotate(45deg);
  border: 2px solid rgba(255,255,255,0.1);
}

.cta-banner::after {
  content: "🍉🍉🍉";
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-size: 1.8rem;
  opacity: 0.3;
  letter-spacing: 8px;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::before {
  content: "🔥 ";
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--vine-green);
  box-shadow: 4px 4px 0 var(--ink);
  border: 2px solid var(--ink);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: var(--mustard);
  color: var(--ink);
}

/* ================= 页脚 ================= */
.site-footer {
  padding: 64px 0 28px;
  background: var(--cream);
  border-top: 3px double var(--line);
  color: var(--ink);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--melon-red);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.8;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a::before {
  content: "→";
  color: var(--melon-red);
  font-weight: 700;
}

.footer-col ul a:hover {
  color: var(--melon-red);
  opacity: 1;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 2px solid var(--line);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: 0.8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.footer-bottom .footer-links a:hover {
  color: var(--melon-red);
}

/* ================= 工具类 ================= */
.text-accent {
  color: var(--melon-red);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  line-height: 1.9;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* 装饰印章效果 */
.seal-stamp {
  display: inline-block;
  border: 3px double #c2352f;
  color: #c2352f;
  padding: 6px 14px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 3px;
  transform: rotate(-6deg);
  opacity: 0.7;
  text-transform: uppercase;
}

/* 分割线装饰 */
.divider-dots {
  border: none;
  height: 20px;
  background-image: radial-gradient(circle, var(--mustard) 3px, transparent 4px);
  background-size: 20px 100%;
  margin: 30px 0;
}

/* ================= 响应式 ================= */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero::before {
    font-size: 6vw;
    right: 0;
  }
  .section::after {
    letter-spacing: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 90px;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .container {
    padding-top: 20px;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .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;
    border-bottom: 3px solid var(--ink);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    gap: 20px;
    align-items: flex-start;
  }
  .main-nav.open a {
    font-size: 1rem;
  }
  .main-nav.open .nav-cta {
    align-self: stretch;
    text-align: center;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .cta-banner {
    padding: 40px 20px;
  }
  .cta-banner h2 {
    font-size: 1.5rem;
  }
  .seo-description {
    font-size: 0.9rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .footer-col {
    margin-bottom: 12px;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

@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;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .header-inner .logo {
    font-size: 1rem;
  }
  .logo::after {
    display: none;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .footer-bottom {
    font-size: 0.7rem;
  }
  .footer-bottom .footer-links {
    gap: 12px;
  }
  .content-wall-item img {
    height: 180px;
  }
}