/* =========================================================
   CinéScope Design System · 胶片纸艺视觉语言
   dytt电影天堂 · 天堂即视界
   ========================================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: #c9433d;
  color: #fbf7f0;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: #f5efe7;
}
::-webkit-scrollbar-thumb {
  background: #c9433d;
  border: 2px solid #f5efe7;
  border-radius: 0;
}
::-webkit-scrollbar-track {
  background: #eadfd1;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  background: #f5efe7;
  color: #302923;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 15% 15%, rgba(217,162,95,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(201,67,61,0.07) 0%, transparent 50%);
  background-attachment: fixed;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 2px,
    rgba(48,41,35,0.014) 2px 4px
  );
}

/* ---------- 核心布局 ---------- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #fbf7f0;
}

/* ---------- 导航 ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245,239,231,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(48,41,35,0.2);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #c9433d 0 12px,
    #d9a25f 12px 20px
  );
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  height: 7px;
  background-color: #302923;
  background-image: radial-gradient(
    circle at 12px 0px,
    #f5efe7 0 4px,
    transparent 5px
  );
  background-size: 24px 7px;
  background-repeat: repeat-x;
  opacity: 0.85;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
  color: #302923;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  letter-spacing: 1px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: #c9433d;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-family: sans-serif;
  font-weight: 900;
  color: #fbf7f0;
  position: relative;
  box-shadow: 3px 3px 0 #302923;
  letter-spacing: -1px;
}

.logo-icon::before,
.logo-icon::after {
  content: '';
  position: absolute;
  left: 5px;
  right: 5px;
  height: 3px;
  background: #d9a25f;
  border-radius: 1px;
}

.logo-icon::before { top: 6px; }
.logo-icon::after { bottom: 6px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #302923;
  padding: 4px 0;
  position: relative;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.main-nav a::before {
  content: '/';
  position: absolute;
  left: -20px;
  color: #d9a25f;
  font-weight: 900;
  font-size: 0.8rem;
}

.main-nav a:first-child::before {
  display: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #c9433d;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav a:hover {
  color: #c9433d;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.nav-cta {
  padding: 10px 24px;
  background: #c9433d;
  color: #fbf7f0;
  border-radius: 0;
  box-shadow: 4px 4px 0 #302923;
  border: 1px solid #302923;
  transition: all 0.2s ease;
}

.main-nav a.nav-cta::before,
.main-nav a.nav-cta::after {
  display: none;
}

.main-nav a.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #302923;
  background: #b83832;
  color: #fbf7f0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #302923;
  border-radius: 0;
  padding: 8px 14px;
  font-size: 1rem;
  cursor: pointer;
  color: #302923;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.85) 0%, transparent 65%),
    linear-gradient(180deg, #f5efe7 0%, #fbf7f0 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 48px,
    rgba(201,67,61,0.025) 48px 96px
  );
  pointer-events: none;
}

.hero::after {
  content: '● REC ● FILM ROLLING ●';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 5px;
  color: rgba(48,41,35,0.45);
  font-weight: 800;
  white-space: nowrap;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-content > * {
  animation: fadeSlideUp 0.7s ease both;
}
.hero-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-content > *:nth-child(4) { animation-delay: 0.24s; }

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  background: #fbf7f0;
  border-left: 4px solid #d9a25f;
  color: #c9433d;
  border-radius: 0;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 2px 2px 0 rgba(48,41,35,0.1);
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #c9433d;
  border-radius: 50%;
  animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.08;
  margin-bottom: 22px;
  font-weight: 900;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  letter-spacing: 3px;
  color: #302923;
  position: relative;
}

.hero h1::after {
  content: '';
  display: block;
  width: 96px;
  height: 7px;
  margin-top: 24px;
  background: linear-gradient(90deg, #c9433d 0 60%, #d9a25f 60% 100%);
  border-radius: 2px;
}

.hero p {
  font-size: 1.12rem;
  opacity: 0.78;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.85;
  letter-spacing: 0.3px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: #302923;
  padding: 8px 8px 28px;
  box-shadow: 14px 14px 0 rgba(201,67,61,0.25);
  border: 1px solid #302923;
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  height: 16px;
  background-color: #302923;
  background-image: radial-gradient(
    circle at 10px 8px,
    #f5efe7 0 3px,
    transparent 4px
  );
  background-size: 20px 16px;
  background-repeat: repeat-x;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(0.25) contrast(1.04);
}

/* ---------- 按钮 ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.22s ease;
}

.btn-primary {
  background: #c9433d;
  color: #fbf7f0;
  box-shadow: 5px 5px 0 #302923;
  border: 1px solid #302923;
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 #302923;
  background: #b83832;
}

.btn-outline {
  background: transparent;
  border: 2px solid #302923;
  color: #302923;
}

.btn-outline:hover {
  background: #fbf7f0;
  border-color: #c9433d;
  color: #c9433d;
}

/* ---------- 标题 ---------- */

.section-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9433d;
  background: #fbf7f0;
  padding: 4px 16px;
  border: 1px solid #d9a25f;
  border-radius: 0;
  margin-bottom: 18px;
  position: relative;
}

.section-label::before {
  content: '★ ';
  color: #d9a25f;
  font-size: 0.6rem;
}

.section-label::after {
  content: ' ★';
  color: #d9a25f;
  font-size: 0.6rem;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  font-family: "Songti SC", "STSong", serif;
  letter-spacing: 1px;
  line-height: 1.2;
  border-left: 6px solid #c9433d;
  padding-left: 18px;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* ---------- 卡片 ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.category-card {
  background: #fbf7f0;
  border-radius: 0;
  padding: 32px 28px 44px;
  border: 1px solid #302923;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 8px 8px 0 rgba(48,41,35,0.12);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #c9433d 0 60%, #d9a25f 60% 100%);
}

.category-card::after {
  content: '•••••';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #d9a25f;
  letter-spacing: 8px;
  font-size: 0.8rem;
}

.category-card:hover {
  transform: translate(-2px, -6px) rotate(-0.4deg);
  box-shadow: 12px 16px 0 rgba(201,67,61,0.2);
}

.card-icon {
  width: 54px;
  height: 54px;
  background: #c9433d;
  color: #fbf7f0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  position: relative;
  box-shadow: 3px 3px 0 #302923;
}

.card-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #d9a25f;
  border-left: 2px solid #d9a25f;
}

.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 800;
  font-family: "Songti SC", serif;
  letter-spacing: 0.5px;
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 12px;
}

.card-link {
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  color: #c9433d;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.5px;
  transition: gap 0.2s ease;
}

.card-link::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* ---------- 特性块 ---------- */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #302923;
  padding: 8px;
  background: #fbf7f0;
  box-shadow: 12px 12px 0 rgba(217,162,95,0.28);
  transition: transform 0.4s ease;
}

.feature-image:hover {
  transform: scale(1.015);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-image::before {
  content: 'SCENE · 01';
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #d9a25f;
  color: #302923;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 6px 14px 6px 12px;
  border-left: 4px solid #c9433d;
  box-shadow: 2px 2px 0 rgba(48,41,35,0.3);
}

.feature-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-family: "Songti SC", "STSong", serif;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.2;
}

.feature-text p {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px dashed rgba(48,41,35,0.15);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: #c9433d;
  font-size: 1rem;
}

/* ---------- 数据条 ---------- */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  background: #fbf7f0;
  padding: 36px 16px;
  border: 1px solid #302923;
  border-radius: 0;
  position: relative;
  box-shadow: 5px 5px 0 rgba(48,41,35,0.14);
  transition: transform 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    #c9433d 0 8px,
    transparent 8px 14px
  );
}

.stat-number {
  font-size: 2.7rem;
  font-weight: 900;
  color: #c9433d;
  font-family: "Songti SC", "STSong", serif;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------- 内容墙 ---------- */

.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  background: #fbf7f0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #302923;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 6px 6px 0 rgba(48,41,35,0.1);
}

.content-wall-item:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 10px 14px 0 rgba(201,67,61,0.2);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #302923;
  filter: saturate(0.92);
}

.content-wall-item:hover img {
  filter: saturate(1.05);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 800;
  font-family: "Songti SC", serif;
}

.content-wall-body p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.65;
}

.content-wall-body::after {
  content: 'NOW SHOWING';
  display: inline-block;
  margin-top: 14px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #c9433d;
  background: rgba(201,67,61,0.08);
  padding: 3px 10px;
  border-left: 2px solid #c9433d;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #302923;
  border-radius: 0;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fbf7f0;
  transition: all 0.25s ease;
}

.faq-item.open {
  border-color: #c9433d;
  box-shadow: 5px 5px 0 rgba(201,67,61,0.2);
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.faq-item .faq-question::after {
  content: '＋';
  color: #c9433d;
  font-weight: 900;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.75;
  line-height: 1.85;
  border-top: 1px dashed rgba(48,41,35,0.15);
  padding-top: 14px;
  margin-top: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ---------- CTA横幅 ---------- */

.cta-banner {
  padding: 64px 48px;
  text-align: center;
  border-radius: 0;
  background: #c9433d;
  color: #fbf7f0;
  position: relative;
  border: 2px solid #302923;
  box-shadow: 10px 10px 0 #302923;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-color: #fbf7f0;
  background-image: radial-gradient(
    circle at 8px 4px,
    #c9433d 0 2px,
    transparent 3px
  );
  background-size: 16px 8px;
  background-repeat: repeat-x;
}

.cta-banner h2 {
  font-family: "Songti SC", "STSong", serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: #fbf7f0;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.cta-banner h2::before {
  content: '┃ ';
  color: #d9a25f;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #fbf7f0;
  color: #c9433d;
  box-shadow: 5px 5px 0 #302923;
  border-color: #302923;
}

.cta-banner .btn-primary:hover {
  background: #fff;
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 #302923;
}

/* ---------- 页脚 ---------- */

.site-footer {
  padding: 72px 0 28px;
  background:
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(48,41,35,0.035) 80px 84px),
    #eadfd1;
  border-top: 2px solid #302923;
  position: relative;
  margin-top: 90px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background-color: #302923;
  background-image: radial-gradient(
    circle at 12px 7px,
    #f5efe7 0 4px,
    transparent 5px
  );
  background-size: 24px 14px;
  background-repeat: repeat-x;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  padding-right: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  opacity: 0.65;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #c9433d;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  background: #d9a25f;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(48,41,35,0.72);
  padding: 4px 0;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
  color: #c9433d;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(48,41,35,0.18);
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(48,41,35,0.6);
  letter-spacing: 0.5px;
}

/* ---------- 工具类 ---------- */

.text-accent {
  color: #d9a25f;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  line-height: 1.8;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ---------- 响应式 ---------- */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    gap: 48px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-image {
    max-width: 560px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .feature-block {
    grid-template-columns: 1fr;
  }

  .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: 72px;
    left: 0;
    width: 100%;
    background: #f5efe7;
    padding: 24px;
    border-bottom: 2px solid #302923;
    gap: 18px;
    box-shadow: 0 20px 30px rgba(48,41,35,0.12);
  }

  .main-nav.open a {
    font-size: 1.05rem;
    display: block;
    padding: 6px 0;
  }

  .main-nav.open a::before {
    display: none;
  }

  .main-nav.open a.nav-cta {
    display: inline-block;
    align-self: flex-start;
  }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .cta-banner {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.1rem;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
    padding-left: 14px;
  }

  .header-inner {
    height: 64px;
  }

  .main-nav.open {
    top: 64px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}