```css
/* 基础重置 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #FFF8F2;
  --mint: #2DC0B0;
  --coral: #FF6B52;
  --sunny: #FFC93D;
  --bark: #2D2420;
  --peach: #FFEEE6;
  --mist: #F0FBF8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--bark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--sunny);
  color: var(--bark);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 4px;
}

/* 核心布局 — 必须居中 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section:nth-child(even) {
  background: var(--mist);
}

.section .container {
  position: relative;
  z-index: 1;
}

.section::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 40px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(255, 107, 82, 0.10) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 0;
}

/* 导航 — 固定顶部 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px dashed rgba(255, 107, 82, 0.35);
}

.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: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: inherit;
  letter-spacing: 1px;
  position: relative;
}

.logo::before {
  content: '✦';
  color: var(--sunny);
  font-size: 1.1rem;
  text-shadow: 2px 2px 0 rgba(255, 107, 82, 0.25);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--coral), var(--sunny));
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 107, 82, 0.35);
  position: relative;
  flex-shrink: 0;
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav li {
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
  color: var(--bark);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: width 0.28s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--coral);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 50px;
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), #FF8A5C);
  box-shadow: 0 4px 14px rgba(255, 107, 82, 0.35);
  transition: all 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 82, 0.45);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 107, 82, 0.08);
}

.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle::before {
  top: 13px;
  box-shadow: 0 8px 0 var(--bark);
}

.menu-toggle::after {
  top: 23px;
}

/* 首页Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  padding: 140px 0 60px;
  background: var(--cream);
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  flex-wrap: wrap;
}

.hero::before {
  content: '';
  position: absolute;
  right: 8%;
  top: 18%;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(rgba(45, 192, 176, 0.14) 2px, transparent 2px);
  background-size: 16px 16px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0,
    transparent 14px,
    rgba(255, 107, 82, 0.05) 14px,
    rgba(255, 107, 82, 0.05) 16px
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 320px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  background: #fff;
  border: 2px solid var(--mint);
  color: var(--mint);
  letter-spacing: 1px;
  position: relative;
  box-shadow: 0 3px 0 rgba(45, 192, 176, 0.18);
}

.hero-eyebrow::before {
  content: '●';
  color: var(--coral);
  margin-right: 8px;
  font-size: 0.6rem;
  vertical-align: middle;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--bark);
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  display: inline-block;
  padding: 0 0.2em;
  background-image: linear-gradient(
    90deg,
    rgba(255, 201, 61, 0.45),
    rgba(255, 107, 82, 0.28),
    rgba(45, 192, 176, 0.30)
  );
  background-repeat: no-repeat;
  background-size: 100% 38%;
  background-position: 0 82%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero h1 .text-accent {
  color: var(--coral);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.72;
  color: var(--bark);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.9;
  position: relative;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0 20px 50px rgba(255, 107, 82, 0.18);
  border: 6px solid #fff;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border: 3px dashed var(--sunny);
  border-radius: 50%;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.28s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), #FF8A5C, var(--sunny));
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 82, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '✦';
  margin-right: 4px;
  font-size: 0.8rem;
}

.btn-primary:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 12px 30px rgba(255, 107, 82, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--mint);
  color: var(--mint);
  box-shadow: 0 4px 12px rgba(45, 192, 176, 0.12);
}

.btn-outline::before {
  content: '→';
  font-weight: 400;
}

.btn-outline:hover {
  background: var(--mint);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(45, 192, 176, 0.3);
}

/* 标签/标题 */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background: var(--coral);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--mint);
  position: relative;
}

.section-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--sunny);
  border-radius: 50%;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--bark);
  line-height: 1.25;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 3px dashed var(--coral);
  position: relative;
}

.section-title::after {
  content: '✦';
  font-size: 1.2rem;
  color: var(--sunny);
  margin-left: 12px;
  display: inline-block;
  animation: sparkle 2.2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.25) rotate(45deg); opacity: 0.5; }
}

.section-desc {
  max-width: 600px;
  opacity: 0.72;
  color: var(--bark);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: 14px;
  padding: 30px 28px;
  border: 2px solid rgba(255, 107, 82, 0.14);
  background: #fff;
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 42px 42px 0;
  border-color: transparent rgba(255, 201, 61, 0.28) transparent transparent;
  transition: border-width 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px) rotate(0.4deg);
  box-shadow: 0 16px 32px rgba(255, 107, 82, 0.16);
  border-color: rgba(255, 107, 82, 0.42);
}

.category-card:hover::before {
  border-width: 0 56px 56px 0;
  border-color: transparent rgba(255, 201, 61, 0.45) transparent transparent;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 107, 82, 0.12), rgba(255, 201, 61, 0.2));
  border: 1.5px dashed rgba(255, 107, 82, 0.35);
}

.category-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--bark);
}

.category-card p {
  font-size: 0.9rem;
  color: rgba(45, 36, 32, 0.58);
  line-height: 1.7;
  margin-bottom: 14px;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--coral);
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

.card-link:hover {
  color: #FF8A5C;
}

.card-link::after {
  content: '→';
  margin-left: 4px;
  transition: margin-left 0.22s ease;
  display: inline-block;
  font-weight: 400;
}

.card-link:hover::after {
  margin-left: 9px;
}

/* 特性块 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 12px;
  border: 1px solid rgba(45, 36, 32, 0.08);
  box-shadow: 0 20px 50px rgba(45, 36, 32, 0.12);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.feature-image:hover {
  transform: rotate(0deg) translateY(-4px);
}

.feature-image::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 64px;
  height: 64px;
  border: 3px dashed var(--mint);
  border-radius: 50%;
  z-index: 2;
  background: var(--mist);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.feature-text {
  position: relative;
}

.feature-text .section-title {
  margin-bottom: 20px;
}

.feature-text p {
  line-height: 1.9;
  font-size: 0.98rem;
  opacity: 0.74;
  color: var(--bark);
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px dashed rgba(45, 36, 32, 0.12);
  transition: padding-left 0.25s ease;
}

.feature-list li:hover {
  padding-left: 8px;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: var(--mint);
  font-size: 1.1rem;
  border: 1.5px solid var(--mint);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
}

/* 数据条 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 30px 24px;
  border-radius: 14px;
  border: 2px dashed var(--mint);
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  transition: all 0.32s ease;
}

.stat-item:hover {
  background: #fff;
  transform: translateY(-5px) rotate(0.6deg);
  box-shadow: 0 12px 28px rgba(45, 192, 176, 0.16);
  border-style: solid;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1.15;
  position: relative;
  display: inline-block;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--coral), #FF8A5C, #FFA64D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-number::after {
  content: '+';
  color: var(--sunny);
  font-size: 1.5rem;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.62;
  color: var(--bark);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* 内容墙 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(45, 192, 176, 0.16);
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(45, 192, 176, 0.18);
  border-color: var(--mint);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 22px 24px;
}

.content-wall-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--bark);
  line-height: 1.5;
}

.content-wall-body p {
  font-size: 0.85rem;
  opacity: 0.62;
  color: var(--bark);
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid rgba(45, 192, 176, 0.18);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--mint);
  border-left: 5px solid var(--mint);
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--bark);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.faq-item .faq-question::after {
  content: '＋';
  color: var(--coral);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.32s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.7;
  color: var(--bark);
  line-height: 1.9;
  font-size: 0.92rem;
  border-top: 1px dashed rgba(45, 36, 32, 0.1);
  margin-top: 4px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA横幅 */
.cta-banner {
  padding: 60px 24px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral) 0%, #FF8A5C 30%, var(--sunny) 70%, #FFD166 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(255, 107, 82, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 2px, transparent 2px);
  background-size: 14px 14px;
  pointer-events: none;
  animation: drift 5s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
  animation: drift 6s ease-in-out infinite 1s;
}

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 16px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.01em;
}

.cta-banner h2::after {
  content: '✦';
  margin-left: 10px;
  font-size: 1.4rem;
  animation: sparkle 2s ease-in-out infinite;
  display: inline-block;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  font-size: 1.05rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary::before {
  content: '★';
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

/* 页脚 */
.site-footer {
  padding: 56px 0 28px;
  background: var(--peach);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sunny), var(--mint), var(--coral));
  background-size: 200% 100%;
  animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 100%; }
  100% { background-position: 200% 100%; }
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  color: var(--bark);
}

.footer-brand .logo {
  margin-bottom: 16px;
  color: var(--bark);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.65;
  color: var(--bark);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col {
  color: var(--bark);
}

.footer-col h4 {
  color: var(--coral);
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

.footer-col a {
  color: var(--bark);
  text-decoration: none;
  opacity: 0.68;
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-col a:hover {
  color: var(--coral);
  opacity: 1;
  transform: translateX(6px);
}

.footer-bottom {
  border-top: 1.5px dashed rgba(45, 36, 32, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(45, 36, 32, 0.5);
  letter-spacing: 0.06em;
}

/* 工具类 */
.text-accent {
  color: var(--coral);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.72;
  color: var(--bark);
  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: 40px;
  }

  .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;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--cream);
    padding: 20px 24px;
    gap: 4px;
    box-shadow: 0 16px 40px rgba(45, 36, 32, 0.1);
    border-bottom: 2px dashed rgba(255, 107, 82, 0.35);
  }

  .main-nav.open li {
    width: 100%;
  }

  .main-nav.open a {
    padding: 14px 12px;
    display: block;
    border-bottom: 1px dashed rgba(45, 36, 32, 0.1);
    font-size: 1rem;
  }

  .main-nav.open a::after {
    display: none;
  }

  .main-nav.open .nav-cta {
    margin-top: 12px;
    text-align: center;
    border: none;
  }

  .hero {
    padding: 120px 0 60px;
    gap: 36px;
  }

  .hero .container {
    flex-direction: column;
    gap: 36px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }
}

@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;
  }

  .hero h1 {
    font-size: 1.85rem;
    padding: 0 0.1em;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .feature-image {
    transform: rotate(0deg);
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-banner {
    padding: 48px 20px;
    border-radius: 18px;
  }

  .cta-banner h2 {
    font-size: 1.45rem;
  }
}