:root {
  --primary: #FF5A6E;
  --primary-dark: #E8485A;
  --primary-soft: #FFE4E7;
  --secondary: #00A8A8;
  --secondary-soft: #D9F0F0;
  --gold: #FFC94B;
  --gold-soft: #FFF3D6;
  --ink: #33312E;
  --muted: #7A7772;
  --bg-main: #FAF6F1;
  --bg-alt: #F0EDE8;
  --card-bg: #FFFFFF;
  --border-color: rgba(51, 49, 46, 0.07);
  --shadow-sm: 0 4px 16px rgba(51, 49, 46, 0.04);
  --shadow-md: 0 12px 32px rgba(51, 49, 46, 0.08);
  --shadow-lg: 0 24px 48px rgba(51, 49, 46, 0.12);
  --radius-pill: 100px;
  --radius-card: 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: var(--bg-main);
  color: var(--ink);
  line-height: 1.7;
  background-image: radial-gradient(rgba(255, 90, 110, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
}

::selection {
  background: var(--primary);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--gold));
  border-radius: 10px;
}

/* ===== 核心布局 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, #F1F8F7 0%, #F8F3F7 100%);
}

/* ===== 固定导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.site-header:hover {
  box-shadow: 0 4px 30px rgba(51, 49, 46, 0.05);
}

.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: 900;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 90, 110, 0.35);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  line-height: 1;
  font-weight: 900;
}

.logo:hover .logo-icon {
  transform: rotate(90deg);
  box-shadow: 0 6px 24px rgba(255, 90, 110, 0.5);
}

.logo span {
  color: var(--secondary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: width 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--primary);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff !important;
  border-radius: var(--radius-pill);
  padding: 10px 26px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(255, 90, 110, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 90, 110, 0.4) !important;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-soft), var(--gold-soft));
  border: 1px solid var(--border-color);
  border-radius: 14px;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
  line-height: 1;
}

.menu-toggle:hover {
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* ===== 首页 Hero ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #FFF8F3 0%, #F0F8F7 40%, #FFF3E4 100%);
}

.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 110, 0.12) 0%, transparent 70%);
  right: -120px;
  top: -120px;
  pointer-events: none;
}

.hero::after {
  content: '玩美 × 玩媚';
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: rgba(255, 90, 110, 0.045);
  pointer-events: none;
  line-height: 1;
  font-style: italic;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
  flex: 1;
  min-width: 320px;
}

.hero-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(255, 90, 110, 0.3);
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -1px;
  color: var(--ink);
}

.hero h1 .text-accent {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  max-width: 460px;
  border-radius: 220px 220px 32px 32px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(51, 49, 46, 0.12);
  border: 6px solid rgba(255, 255, 255, 0.75);
  position: relative;
}

.hero-image::after {
  content: '×';
  position: absolute;
  right: 18px;
  top: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(255, 90, 110, 0.25);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 90, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 90, 110, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 90, 110, 0.4);
  color: var(--primary);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-3px);
}

/* ===== 标签 / 标题 ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  color: var(--primary);
  text-transform: uppercase;
}

.section-label::before {
  content: '×';
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  margin-right: 8px;
  letter-spacing: 0;
  text-transform: none;
}

.section-label::after {
  content: '×';
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  margin-left: 8px;
  letter-spacing: 0;
  text-transform: none;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-desc {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 48px;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ===== 卡片网格 ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.category-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.4s ease;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 0 0 4px 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.category-card::after {
  content: '×';
  position: absolute;
  right: 18px;
  bottom: -14px;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover::after {
  opacity: 0.15;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-soft), var(--gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.category-card:hover .card-icon {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(135deg, rgba(255, 90, 110, 0.15), rgba(255, 201, 75, 0.15));
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.2s ease;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: var(--primary);
  gap: 10px;
}

/* ===== 特性块 ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.feature-image::before {
  content: '×';
  position: absolute;
  left: -14px;
  top: -10px;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  z-index: 1;
  line-height: 1;
}

.feature-image img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.feature-image:hover img {
  transform: scale(1.03);
}

.feature-text {
  flex: 1;
}

.feature-text .section-label {
  margin-bottom: 16px;
}

.feature-text h3 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--ink);
}

.feature-text > p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.98rem;
}

.feature-list li::before {
  content: '✓';
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), #40C0C0);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 168, 168, 0.3);
}

/* ===== 数据条 ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-item::after {
  content: '×';
  position: absolute;
  right: 6px;
  bottom: -16px;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.14;
  line-height: 1;
  pointer-events: none;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1.5px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.stat-number::after {
  content: '+';
  color: var(--gold);
  font-size: 0.6em;
  font-weight: 900;
  margin-left: 2px;
  vertical-align: top;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* ===== 内容墙 ===== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}

.content-wall-item {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.4s ease;
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.content-wall-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.content-wall-body .card-link {
  font-size: 0.82rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 90, 110, 0.25);
  box-shadow: 0 6px 20px rgba(255, 90, 110, 0.07);
}

.faq-item.open {
  border-color: rgba(255, 90, 110, 0.4);
  box-shadow: 0 8px 28px rgba(255, 90, 110, 0.1);
}

.faq-item .faq-question {
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.2px;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--secondary);
}

.faq-item .faq-answer {
  padding: 0 26px 22px;
  display: none;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== CTA 横幅 ===== */
.cta-banner {
  background: linear-gradient(135deg, #FF5A6E 0%, #FF7E56 45%, #FFC94B 100%);
  padding: 72px 48px;
  text-align: center;
  border-radius: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(255, 90, 110, 0.28);
}

.cta-banner::before {
  content: '×';
  position: absolute;
  left: 36px;
  top: -50px;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.cta-banner::after {
  content: '×';
  position: absolute;
  right: 70px;
  bottom: -32px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
  font-weight: 800;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.35);
}

/* ===== 页脚 ===== */
.site-footer {
  background: #F2ECE4;
  padding: 64px 0 28px;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--secondary));
}

.site-footer .container {
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--ink);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s ease, padding-left 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(51, 49, 46, 0.1);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.83rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.footer-bottom a {
  color: var(--secondary);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ===== 工具类 ===== */
.text-accent {
  color: var(--primary);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--muted);
  line-height: 1.8;
}

.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;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(250, 246, 241, 0.98);
    padding: 24px;
    gap: 4px;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 20px 40px rgba(51, 49, 46, 0.15);
    backdrop-filter: blur(20px);
    align-items: stretch;
  }

  .main-nav.open a {
    padding: 13px 16px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
  }

  .main-nav.open a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav.open a:not(.nav-cta):hover {
    background: var(--primary-soft);
  }

  .main-nav.open .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 14px !important;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 360px;
    width: 80%;
  }

  .section {
    padding: 70px 0;
  }

  .cards-grid,
  .content-wall {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .cta-banner {
    padding: 56px 28px;
    border-radius: 24px;
  }
}

@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;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    max-width: 300px;
    width: 90%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .btn {
    padding: 14px 24px;
  }

  .cta-banner {
    padding: 48px 22px;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }
}