/* ============================================
   蜜桃在线 · 鲜甜设计系统
   Peachy Liquid Organic / Peach Crème Edition
   蜜桃奶油基底 + 珊瑚蜜桃渐变 + 薄荷微光
============================================ */

/* 基础重置 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --peach-cream: #FFF8F2;
  --peach-blush: #FFEFE5;
  --peach-coral: #FF7E67;
  --peach-deep: #D95044;
  --peach-gold: #FFB98A;
  --peach-soft: #FFD9C9;
  --mint-fresh: #7CCFA8;
  --berry-text: #4A2A2A;
  --berry-soft: #8B6B66;
  --white-soft: #FFFDFB;
  --peach-shadow: rgba(255, 126, 103, 0.18);
  --peach-shadow-lg: rgba(255, 126, 103, 0.32);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 185, 138, 0.14) 0%, transparent 32%),
    radial-gradient(circle at 85% 40%, rgba(255, 126, 103, 0.09) 0%, transparent 28%),
    radial-gradient(circle at 50% 92%, rgba(255, 185, 138, 0.12) 0%, transparent 34%),
    var(--peach-cream);
  color: var(--berry-text);
  min-height: 100vh;
  line-height: 1.6;
}

/* 核心布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, var(--peach-cream), var(--peach-blush));
}

/* 导航 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 242, 0.86);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 126, 103, 0.14);
  box-shadow: 0 4px 30px rgba(255, 126, 103, 0.05);
  transition: box-shadow 0.3s ease;
}

.site-header:hover {
  box-shadow: 0 6px 36px rgba(255, 126, 103, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--berry-text);
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--peach-gold), var(--peach-coral));
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 126, 103, 0.35);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  top: 6px;
  right: 7px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--berry-text);
  transition: color 0.25s, letter-spacing 0.25s;
  position: relative;
  letter-spacing: 0.01em;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--peach-coral), var(--peach-gold));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--peach-coral);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 40px;
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--peach-coral), var(--peach-gold));
  box-shadow: 0 4px 20px rgba(255, 126, 103, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 126, 103, 0.45);
}

.nav-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--peach-blush);
  border: 1px solid rgba(255, 126, 103, 0.18);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--peach-coral);
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: var(--peach-soft);
}

/* Hero */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 185, 138, 0.4) 0%, transparent 44%),
    radial-gradient(circle at 18% 78%, rgba(255, 126, 103, 0.2) 0%, transparent 38%),
    linear-gradient(140deg, var(--peach-cream) 0%, var(--peach-blush) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 185, 138, 0.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: 6%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 126, 103, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 68px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
  padding: 40px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 22px;
  color: var(--peach-deep);
  background: linear-gradient(135deg, rgba(255, 239, 229, 0.9), rgba(255, 217, 201, 0.9));
  box-shadow: 0 2px 12px rgba(255, 126, 103, 0.12);
  letter-spacing: 0.4px;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-coral), var(--peach-gold));
  box-shadow: 0 0 8px rgba(255, 126, 103, 0.6);
}

.hero h1 {
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: linear-gradient(125deg, var(--peach-deep) 0%, var(--peach-coral) 48%, var(--peach-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--berry-soft);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 48px;
  overflow: hidden;
  transform: rotate(2.5deg);
  box-shadow: 0 40px 80px rgba(255, 126, 103, 0.28), 0 12px 32px rgba(255, 126, 103, 0.15);
  background: linear-gradient(135deg, var(--peach-soft), var(--peach-gold));
  padding: 10px;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 40px;
  background: linear-gradient(200deg, rgba(255, 255, 255, 0.25), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  display: block;
  min-height: 340px;
  filter: saturate(1.05);
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 48px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--peach-coral), var(--peach-gold));
  box-shadow: 0 6px 24px rgba(255, 126, 103, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 126, 103, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--peach-coral);
  color: var(--peach-coral);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 126, 103, 0.08);
  transform: translateY(-3px);
}

/* 标签/标题 */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--peach-coral);
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--peach-coral), var(--peach-gold));
  border-radius: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--berry-text);
}

.section-desc {
  max-width: 640px;
  color: var(--berry-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white-soft);
  border-radius: 30px;
  padding: 34px 30px;
  border: 1px solid rgba(255, 126, 103, 0.08);
  box-shadow: 0 4px 20px rgba(74, 42, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 185, 138, 0.2), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, var(--white-soft), var(--peach-blush));
  box-shadow: 0 24px 48px rgba(255, 126, 103, 0.18);
  border-color: rgba(255, 126, 103, 0.25);
}

.category-card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--peach-deep);
  transition: transform 0.3s ease;
}

.category-card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #FFE8DC, #FFD0B8);
}

.category-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #FFDCC9, #FFBC92);
}

.category-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #FFF0D8, #FFD9AD);
}

.category-card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #E4F5EE, #C4E8DA);
}

.category-card:nth-child(n+5) .card-icon {
  background: linear-gradient(135deg, #FFE4F0, #FFC9DE);
}

.category-card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
}

.card-link {
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--peach-coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 10px;
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--berry-text);
}

.category-card p {
  font-size: 0.88rem;
  color: var(--berry-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* 特性块 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feature-image {
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--peach-blush), var(--peach-soft));
  box-shadow: 0 30px 60px rgba(255, 126, 103, 0.15);
  position: relative;
}

.feature-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(transparent, rgba(255, 126, 103, 0.08));
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-image:hover img {
  transform: scale(1.03);
}

.feature-text {
  padding: 20px 0;
}

.feature-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--berry-text);
  line-height: 1.3;
}

.feature-text p {
  color: var(--berry-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--berry-text);
  border-bottom: 1px dashed rgba(255, 126, 103, 0.12);
  transition: padding-left 0.25s ease;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li:hover {
  padding-left: 6px;
}

.feature-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--peach-coral) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  box-shadow: 0 2px 8px rgba(255, 126, 103, 0.3);
}

/* 数据条 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 38px 24px;
  border-radius: 32px;
  background: linear-gradient(155deg, var(--white-soft), var(--peach-blush));
  border: 1px solid rgba(255, 126, 103, 0.08);
  box-shadow: 0 8px 30px rgba(255, 126, 103, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--peach-coral), transparent);
  border-radius: 4px;
  opacity: 0.6;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 126, 103, 0.18);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--peach-deep), var(--peach-coral) 60%, var(--peach-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--berry-soft);
  margin-top: 8px;
}

/* 内容墙 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 28px;
  overflow: hidden;
  background: var(--white-soft);
  border: 1px solid rgba(255, 126, 103, 0.08);
  box-shadow: 0 4px 20px rgba(74, 42, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.content-wall-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 50px rgba(255, 126, 103, 0.2);
}

.content-wall-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.content-wall-item:hover img {
  transform: scale(1.06);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--berry-text);
}

.content-wall-body p {
  font-size: 0.88rem;
  color: var(--berry-soft);
  line-height: 1.6;
}

.content-wall-body .card-link {
  margin-top: 14px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 126, 103, 0.12);
  border-radius: 24px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white-soft);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 126, 103, 0.3);
}

.faq-item.open {
  background: linear-gradient(145deg, var(--white-soft), var(--peach-blush));
  border-color: rgba(255, 126, 103, 0.25);
  box-shadow: 0 12px 36px rgba(255, 126, 103, 0.1);
}

.faq-item .faq-question {
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--berry-text);
  transition: color 0.3s;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--peach-coral);
  transition: transform 0.35s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 26px 22px;
  display: none;
  color: var(--berry-soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeSlideDown 0.35s ease;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 0.7;
    transform: translateY(0);
  }
}

/* CTA横幅 */
.cta-banner {
  padding: 72px 32px;
  text-align: center;
  border-radius: 48px;
  background: linear-gradient(140deg, var(--peach-deep) 0%, var(--peach-coral) 40%, var(--peach-gold) 100%);
  box-shadow: 0 30px 80px rgba(255, 126, 103, 0.4);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.cta-banner::before {
  width: 200px;
  height: 200px;
  top: -60px;
  left: -60px;
}

.cta-banner::after {
  width: 160px;
  height: 160px;
  bottom: -50px;
  right: -40px;
}

.cta-banner h2 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 30px rgba(217, 80, 68, 0.25);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: var(--white-soft);
  color: var(--peach-coral);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.35);
}

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* 页脚 */
.site-footer {
  padding: 80px 0 32px;
  margin-top: 60px;
  background: linear-gradient(160deg, var(--peach-blush) 0%, var(--peach-soft) 100%);
  border-top: 1px solid rgba(255, 126, 103, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--berry-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--berry-text);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--berry-soft);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
  color: var(--peach-coral);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(74, 42, 42, 0.1);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--berry-soft);
}

/* 工具类 */
.text-accent {
  color: var(--peach-coral);
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 620px;
  margin: 0 auto 52px;
  color: var(--berry-soft);
  line-height: 1.75;
  font-size: 1rem;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .hero .container {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .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: rgba(255, 248, 242, 0.98);
    backdrop-filter: blur(24px);
    padding: 28px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 126, 103, 0.12);
    box-shadow: 0 30px 60px rgba(255, 126, 103, 0.15);
    border-radius: 0 0 28px 28px;
    z-index: 999;
  }

  .main-nav.open a {
    font-size: 1.05rem;
    padding: 8px 0;
    text-align: center;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    padding: 14px 28px;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 480px;
    margin: 0 auto;
    transform: none;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-banner {
    padding: 48px 20px;
    border-radius: 32px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}