/* ==========================================================
   电影天堂 · Cinematic Cream Design System
   Warm Cinema / Ticket Stub Modernism
   ========================================================== */

:root {
  --cream: #FAF3E9;
  --surface: #FFFDF6;
  --soft: #F1E8DC;
  --coral: #FF4D35;
  --teal: #0E7C7B;
  --amber: #F0A53D;
  --ink: #332D26;
  --line: #332D26;
  --white: #FFFFFF;
  --shadow-sm: 3px 3px 0 var(--line);
  --shadow-md: 6px 6px 0 var(--line);
  --shadow-lg: 10px 10px 0 var(--line);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background-color: var(--cream);
  background-image: radial-gradient(rgba(51,45,38,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

::selection {
  background: var(--coral);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 999px;
  border: 2px solid var(--cream);
}

/* ========== 核心布局 ========== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: var(--soft);
}

/* ========== 导航 ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 243, 233, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--line);
  box-shadow: 0 2px 0 rgba(51,45,38,0.06);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--coral) 0 10px,
    var(--amber) 10px 20px,
    var(--teal) 20px 30px,
    var(--coral) 30px 40px
  );
  z-index: -1;
}

.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.35rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: #fff;
  border: 2px solid var(--line);
  box-shadow: 2px 2px 0 var(--line);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--coral);
}

.nav-cta {
  padding: 8px 22px !important;
  border-radius: 10px;
  color: #fff !important;
  background: var(--coral);
  font-weight: 700 !important;
  border: 2px solid var(--line);
  box-shadow: 2px 2px 0 var(--line);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: #fff !important;
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--line);
}

.menu-toggle {
  display: none;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--line);
}

/* ========== Home Hero ========== */

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 60% 50% at 82% 18%, rgba(255, 77, 53, 0.12), transparent),
    radial-gradient(ellipse 55% 45% at 12% 85%, rgba(14, 124, 123, 0.09), transparent),
    var(--cream);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 5%;
  width: 55%;
  height: 130%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 42%, transparent 72%);
  transform: rotate(14deg);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 60%;
  max-width: 680px;
  animation: heroRise 0.8s ease both;
}

.hero-image {
  flex: 1 1 40%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--surface);
  animation: heroRise 0.8s ease 0.15s both;
}

.hero-image:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 12px 12px 0 var(--line);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 999px;
  border: 2px solid var(--line);
  box-shadow: 2px 2px 0 var(--line);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: '★';
  color: var(--amber);
  font-size: 0.9rem;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink);
  position: relative;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 90px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--coral), var(--amber));
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.72;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== 按钮 ========== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--line);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  font-size: 0.95rem;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--line);
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  color: #fff;
}

.btn-outline {
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--amber);
  color: var(--ink);
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--line);
}

/* ========== 标签 / 标题 ========== */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  border: 2px solid var(--line);
  box-shadow: 2px 2px 0 var(--line);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  border: 1.5px solid var(--line);
}

.section-label::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--coral);
  border: 1.5px solid var(--line);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  background: var(--coral);
  margin-right: 14px;
  border-radius: 2px;
  transform: rotate(45deg);
  border: 1.5px solid var(--line);
  vertical-align: 4px;
}

.section-desc {
  max-width: 620px;
  opacity: 0.68;
  margin-bottom: 48px;
  line-height: 1.8;
  font-size: 1.02rem;
  color: var(--ink);
}

/* ========== 卡片网格 ========== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:nth-child(1) { transform: rotate(-0.6deg); }
.category-card:nth-child(2) { transform: rotate(0.4deg); }
.category-card:nth-child(3) { transform: rotate(-0.3deg); }
.category-card:nth-child(4) { transform: rotate(0.6deg); }

.category-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 77, 53, 0.08);
  transition: transform 0.3s;
}

.category-card:hover::after {
  transform: scale(2.4);
  opacity: 0.5;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  border: 2px solid var(--line);
  background: var(--cream);
}

.category-card:nth-child(1) .card-icon { background: rgba(255, 77, 53, 0.13); }
.category-card:nth-child(2) .card-icon { background: rgba(14, 124, 123, 0.13); }
.category-card:nth-child(3) .card-icon { background: rgba(240, 165, 61, 0.13); }
.category-card:nth-child(4) .card-icon { background: rgba(255, 77, 53, 0.13); }

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.card-link::after {
  content: '→';
  font-weight: 900;
  transition: transform 0.2s ease;
}

.category-card:hover .card-link::after {
  transform: translateX(5px);
}

/* ========== 特性块 ========== */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
  position: relative;
  transition: transform 0.3s ease;
}

.feature-image:hover {
  transform: rotate(0.8deg) scale(1.01);
}

.feature-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-text {
  position: relative;
}

.feature-text .section-label {
  margin-bottom: 18px;
}

.feature-text h2,
.feature-text h3 {
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
  color: var(--ink);
}

.feature-text p {
  opacity: 0.72;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-bottom: 24px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(14, 124, 123, 0.14);
  color: var(--teal);
  font-weight: 900;
  font-size: 0.72rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(14, 124, 123, 0.3);
}

/* ========== 数据条 ========== */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 20px;
}

.stat-item {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.stat-item:nth-child(1) { transform: rotate(-1deg); }
.stat-item:nth-child(2) { transform: rotate(0.5deg); }
.stat-item:nth-child(3) { transform: rotate(-0.5deg); }
.stat-item:nth-child(4) { transform: rotate(1deg); }

.stat-item::before {
  content: '';
  position: absolute;
  top: -22px;
  right: -22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 77, 53, 0.08);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-item:hover::before {
  transform: scale(1.6);
}

.stat-number {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--coral);
}

.stat-item:nth-child(2) .stat-number { color: var(--teal); }
.stat-item:nth-child(3) .stat-number { color: var(--amber); }

.stat-label {
  font-size: 0.85rem;
  opacity: 0.62;
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ========== 内容墙 ========== */

.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.content-wall-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 12px, var(--teal) 12px 24px, var(--amber) 24px 36px);
  z-index: 2;
}

.content-wall-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid var(--line);
  transition: transform 0.4s ease;
}

.content-wall-item:hover img {
  transform: scale(1.03);
}

.content-wall-body {
  padding: 22px 22px 26px;
}

.content-wall-body h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.content-wall-body p {
  font-size: 0.88rem;
  opacity: 0.66;
  line-height: 1.65;
  margin-bottom: 12px;
}

.content-wall-body .card-link {
  margin-top: 4px;
}

/* ========== FAQ ========== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 2px 2px 0 rgba(14, 124, 123, 0.4);
  border-color: var(--teal);
}

.faq-item.open {
  box-shadow: 4px 4px 0 var(--teal);
  border-color: var(--teal);
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  gap: 24px;
}

.faq-question::after {
  content: '▾';
  font-size: 1.2rem;
  color: var(--teal);
  font-weight: 900;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 22px;
  display: none;
  opacity: 0.72;
  line-height: 1.75;
  font-size: 0.95rem;
  border-top: 1px dashed rgba(51, 45, 38, 0.2);
  padding-top: 14px;
  margin: 0 24px 0 ;
  padding-left: 0;
  padding-right: 0;
}

.faq-item.open .faq-answer {
  display: block;
  animation: faqFade 0.35s ease both;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 0.72;
    transform: translateY(0);
  }
}

/* ========== CTA 横幅 ========== */

.cta-banner {
  background: linear-gradient(125deg, var(--coral) 0%, var(--amber) 100%);
  padding: 56px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '▶';
  position: absolute;
  font-size: 8rem;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 14px, var(--line) 14px 18px);
  opacity: 0.25;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral);
  border: 2px solid var(--line);
  box-shadow: 3px 3px 0 var(--line);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: var(--surface);
  box-shadow: 1px 1px 0 var(--line);
}

/* ========== 页脚 ========== */

.site-footer {
  padding: 64px 0 28px;
  background: var(--soft);
  border-top: 2px solid var(--line);
  margin-top: 80px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--teal) 0 12px,
    var(--amber) 12px 24px,
    var(--coral) 24px 36px
  );
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  opacity: 0.68;
  line-height: 1.75;
  max-width: 300px;
  font-size: 0.92rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--amber));
  border-radius: 2px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.68;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: opacity 0.2s, color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--coral);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px dashed rgba(51, 45, 38, 0.28);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.65;
  color: var(--ink);
}

/* ========== 工具类 ========== */

.text-accent {
  color: var(--coral);
  font-weight: 800;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.68;
  line-height: 1.8;
  color: var(--ink);
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ========== 响应式 ========== */

@media (max-width: 900px) {
  .hero {
    padding-top: 100px;
    gap: 32px;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero-image {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .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: 36px;
  }

  .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(--surface);
    padding: 24px;
    border-bottom: 2px solid var(--line);
    box-shadow: 0 10px 30px rgba(51, 45, 38, 0.12);
    gap: 18px;
    align-items: flex-start;
  }

  .main-nav.open a {
    font-size: 1rem;
    padding: 6px 0;
  }

  .main-nav.open .nav-cta {
    margin-top: 8px;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2),
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .cta-banner {
    padding: 44px 24px;
  }
}

@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;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 88px;
    padding-bottom: 48px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .cta-banner p {
    font-size: 0.95rem;
  }
}