/* =====================================================
   次元城动漫 · Comic Pop Dimension
   Design System by Awwwards Designer
   ===================================================== */

*, *::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: #FFF9EF;
  color: #1E1E2E;
  line-height: 1.7;
  background-image: radial-gradient(circle, rgba(255, 77, 141, 0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-attachment: fixed;
}

::selection {
  background: #FFD166;
  color: #1E1E2E;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #FFF9EF;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF4D8D, #E84393);
  border-radius: 5px;
  border: 2px solid #1E1E2E;
}

/* --- 核心布局 --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, #F0F9FF 0%, #E8F4FD 100%);
}

/* --- 导航 --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 249, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 3px solid #1E1E2E;
  box-shadow: 0 2px 0 rgba(255, 77, 141, 0.4), 0 4px 0 rgba(255, 209, 102, 0.3);
}

.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: #1E1E2E;
  letter-spacing: -0.02em;
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #FF4D8D, #FFD166);
  border: 2px solid #1E1E2E;
  box-shadow: 2px 2px 0 #1E1E2E;
  transform: rotate(-6deg);
  transition: transform 0.25s;
}

.logo:hover .logo-icon {
  transform: rotate(6deg) scale(1.08);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
  color: #1E1E2E;
  position: relative;
  padding: 4px 2px;
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  color: #E84393;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF4D8D, #FFD166);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 12px;
  color: #fff !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #FF4D8D, #E84393);
  border: 2px solid #1E1E2E;
  box-shadow: 2px 2px 0 #1E1E2E;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #1E1E2E;
  color: #fff !important;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: #FFF9EF;
  border: 2px solid #1E1E2E;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 2px 2px 0 #1E1E2E;
  transition: all 0.2s;
}

.menu-toggle:hover {
  background: #FFE3EE;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #1E1E2E;
}

/* --- Hero --- */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '✦';
  position: absolute;
  top: 15%;
  right: 3%;
  font-size: 4.5rem;
  color: #FF4D8D;
  opacity: 0.2;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.hero-content {
  max-width: 620px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  background: #FFD166;
  border: 2px solid #1E1E2E;
  box-shadow: 2px 2px 0 #1E1E2E;
  transform: rotate(-2deg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #1E1E2E;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid #1E1E2E;
  box-shadow: 8px 8px 0 rgba(30, 30, 46, 0.9);
  transform: rotate(2deg);
  position: relative;
  background: linear-gradient(135deg, #FFE3EE 0%, #E3EEFF 50%, #FFF5DC 100%);
  min-height: 340px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30, 30, 46, 0.08) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  z-index: 0;
  pointer-events: none;
}

.hero-image::after {
  content: '✦';
  position: absolute;
  top: -14px;
  right: -10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF4D8D;
  border: 2px solid #1E1E2E;
  border-radius: 50%;
  box-shadow: 2px 2px 0 #1E1E2E;
  font-size: 1rem;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* --- 按钮 --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #1E1E2E;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #FF4D8D, #E84393);
  box-shadow: 3px 3px 0 #1E1E2E;
}

.btn-primary:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #1E1E2E;
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  border: 2px solid #1E1E2E;
  color: #1E1E2E;
  box-shadow: 3px 3px 0 #1E1E2E;
  background: #fff;
}

.btn-outline:hover {
  background: #E3EEFF;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #1E1E2E;
}

/* --- 标签/标题 --- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
  background: #E3EEFF;
  border: 2px solid #1E1E2E;
  padding: 5px 16px;
  border-radius: 20px;
  box-shadow: 2px 2px 0 #1E1E2E;
  text-transform: uppercase;
  color: #1E1E2E;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 6px;
  background: linear-gradient(90deg, #FF4D8D, #FFD166);
  border-radius: 4px;
  transform: skewX(-20deg);
}

.section-desc {
  max-width: 600px;
  opacity: 0.72;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* --- 卡片网格 --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 16px;
  padding: 30px 28px;
  border: 2px solid #1E1E2E;
  background: #fff;
  box-shadow: 4px 4px 0 rgba(30, 30, 46, 0.9);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.category-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 7px 7px 0 rgba(30, 30, 46, 0.9);
}

.category-card::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #FFF9EF;
  border: 2px solid #1E1E2E;
  border-radius: 50%;
  transition: background 0.2s;
}

.category-card:hover::after {
  background: #06D6A0;
}

.category-card:nth-child(3n+1) .card-icon { background: #FFE3EE; }
.category-card:nth-child(3n+2) .card-icon { background: #E3EEFF; }
.category-card:nth-child(3n+3) .card-icon { background: #FFF5DC; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  border: 2px solid #1E1E2E;
  box-shadow: 2px 2px 0 #1E1E2E;
  transform: rotate(-3deg);
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #E84393;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 4px;
}

.card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.card-link:hover {
  gap: 10px;
}

/* --- 特性块 --- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #1E1E2E;
  box-shadow: 6px 6px 0 rgba(30, 30, 46, 0.9);
  transform: rotate(1.5deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  background: linear-gradient(135deg, #FFE3EE, #E3EEFF);
}

.feature-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.feature-image::after {
  content: '💫';
  position: absolute;
  bottom: -10px;
  left: -8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFD166;
  border: 2px solid #1E1E2E;
  border-radius: 50%;
  box-shadow: 2px 2px 0 #1E1E2E;
  font-size: 1rem;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding: 8px 0;
}

.feature-text .section-title {
  margin-bottom: 18px;
}

.feature-text .section-desc {
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(30, 30, 46, 0.1);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✓';
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #FFD166;
  border: 2px solid #1E1E2E;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #1E1E2E;
  box-shadow: 1px 1px 0 #1E1E2E;
  flex-shrink: 0;
}

/* --- 数据条 --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
  border-radius: 18px;
  border: 2px solid #1E1E2E;
  box-shadow: 5px 5px 0 rgba(30, 30, 46, 0.9);
  background: #fff;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 7px 7px 0 rgba(30, 30, 46, 0.9);
}

.stat-item:nth-child(1) { background: #FFE3EE; }
.stat-item:nth-child(2) { background: #E3EEFF; }
.stat-item:nth-child(3) { background: #FFF5DC; }
.stat-item:nth-child(4) { background: #E0FFF5; }

.stat-item:nth-child(1) .stat-number { color: #E84393; }
.stat-item:nth-child(2) .stat-number { color: #4361EE; }
.stat-item:nth-child(3) .stat-number { color: #FF8C42; }
.stat-item:nth-child(4) .stat-number { color: #06A77D; }

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  display: inline-block;
}

.stat-number::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 800;
  margin-left: 2px;
}

.stat-item:nth-child(3) .stat-number::after,
.stat-item:nth-child(4) .stat-number::after {
  content: '%';
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* --- 内容墙 --- */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #1E1E2E;
  background: #fff;
  box-shadow: 4px 4px 0 rgba(30, 30, 46, 0.9);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-wall-item:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 7px 7px 0 rgba(30, 30, 46, 0.9);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #1E1E2E;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 22px 24px 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.content-wall-body p {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.7;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid #1E1E2E;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 3px 3px 0 rgba(30, 30, 46, 0.9);
  transition: all 0.25s;
}

.faq-item:hover {
  box-shadow: 4px 4px 0 rgba(30, 30, 46, 0.9);
  transform: translate(-1px, -1px);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #FFF9EF;
  border-bottom: 2px solid transparent;
  transition: background 0.2s;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: #E84393;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  margin-left: 16px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFE3EE;
  border: 2px solid #1E1E2E;
  border-radius: 8px;
  box-shadow: 1px 1px 0 #1E1E2E;
}

.faq-item.open .faq-question {
  background: #FFE3EE;
  border-bottom: 2px solid #1E1E2E;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg) scale(1.05);
  color: #fff;
  background: #E84393;
}

.faq-item .faq-answer {
  padding: 0 24px 18px;
  display: none;
  opacity: 0.7;
  font-size: 0.92rem;
  line-height: 1.8;
  background: #fff;
  animation: fadeIn 0.3s ease;
}

.faq-item.open .faq-answer {
  display: block;
  opacity: 0.75;
  padding-top: 16px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 0.75; transform: translateY(0); }
}

/* --- CTA横幅 --- */
.cta-banner {
  padding: 60px 32px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #FF4D8D 0%, #E84393 40%, #4361EE 100%);
  border: 3px solid #1E1E2E;
  box-shadow: 6px 6px 0 rgba(30, 30, 46, 0.9);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.cta-banner:hover {
  transform: translate(-1px, -1px);
  box-shadow: 8px 8px 0 rgba(30, 30, 46, 0.9);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  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;
  text-shadow: 2px 2px 0 rgba(30, 30, 46, 0.3);
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.cta-banner .btn-primary {
  background: #FFD166;
  color: #1E1E2E !important;
  border: 2px solid #1E1E2E;
  box-shadow: 3px 3px 0 rgba(30, 30, 46, 0.9);
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.cta-banner .btn-primary:hover {
  background: #fff;
  box-shadow: 4px 4px 0 rgba(30, 30, 46, 0.9);
  transform: translate(-1px, -1px);
}

/* --- 页脚 --- */
.site-footer {
  padding: 64px 0 28px;
  background: #FFF9EF;
  border-top: 3px solid #1E1E2E;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #FF4D8D, #FFD166, #4361EE, #06D6A0, #FF4D8D);
  background-size: 20% 100%;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FFD166;
  display: inline-block;
  align-self: flex-start;
  letter-spacing: -0.01em;
}

.footer-col a {
  color: rgba(30, 30, 46, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col a::before {
  content: '›';
  font-weight: 700;
  color: #E84393;
  font-size: 1rem;
  transition: transform 0.2s;
}

.footer-col a:hover {
  color: #E84393;
  transform: translateX(4px);
}

.footer-col a:hover::before {
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 2px solid rgba(30, 30, 46, 0.12);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(30, 30, 46, 0.55);
  font-weight: 500;
}

/* --- 工具类 --- */
.text-accent {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 209, 102, 0.75) 60%);
  padding: 0 6px;
  color: #1E1E2E;
  font-weight: inherit;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.68;
  line-height: 1.8;
  font-size: 0.95rem;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* --- 响应式 --- */
@media (max-width: 1024px) {
  .hero {
    gap: 40px;
  }
  .hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .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: #FFF9EF;
    padding: 24px 24px 28px;
    gap: 18px;
    border-bottom: 3px solid #1E1E2E;
    box-shadow: 0 8px 24px rgba(30, 30, 46, 0.12);
  }
  .main-nav.open .nav-cta {
    display: inline-block;
    text-align: center;
    margin-top: 8px;
  }
  .hero {
    flex-direction: column;
    padding: 110px 0 60px;
    gap: 40px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    width: 100%;
  }
  .section {
    padding: 60px 0;
  }
  .footer-brand {
    padding-right: 0;
  }
}

@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;
    align-items: stretch;
  }
  .hero-buttons .btn {
    justify-content: center;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .cta-banner {
    padding: 40px 20px;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .stat-number {
    font-size: 1.9rem;
  }
  .hero-image {
    min-height: auto;
  }
  .hero::after {
    font-size: 2.5rem;
  }
}