/* ========================================
   造梦助手 - 介绍页样式
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --zm-primary: #6C3CE1;
  --zm-primary-light: #8B5CF6;
  --zm-primary-dark: #5021A6;
  --zm-accent: #F59E0B;
  --zm-accent-light: #FCD34D;
  --zm-gradient: linear-gradient(135deg, #6C3CE1 0%, #3B82F6 100%);
  --zm-gradient-warm: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --zm-gradient-hero: linear-gradient(135deg, #0F0C29 0%, #302B63 50%, #24243E 100%);
  --zm-bg: #FAFBFF;
  --zm-bg-card: #FFFFFF;
  --zm-text: #1E1B4B;
  --zm-text-secondary: #6B7280;
  --zm-text-light: #9CA3AF;
  --zm-border: #E5E7EB;
  --zm-shadow-sm: 0 1px 3px rgba(108, 60, 225, 0.08);
  --zm-shadow-md: 0 4px 20px rgba(108, 60, 225, 0.12);
  --zm-shadow-lg: 0 12px 40px rgba(108, 60, 225, 0.18);
  --zm-radius-sm: 8px;
  --zm-radius-md: 16px;
  --zm-radius-lg: 24px;
  --zm-radius-xl: 32px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.zm-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--zm-text);
  background: var(--zm-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.zm-page img {
  max-width: 100%;
  height: auto;
}

/* ---------- 导航栏 Logo 样式（修复与全局 img 样式冲突） ---------- */
.yz-logo {
  height: 67px !important;
  width: auto !important;
  display: block;
}
.yz-logo-mobile {
  height: 34px !important;
  width: auto !important;
  display: block;
}
.yz-logo-footer {
  height: 38px !important;
  width: auto !important;
  display: block;
}

/* ---------- Container ---------- */
.zm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Section 1: Hero
   ======================================== */
.zm-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--zm-gradient-hero);
}

.zm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zm-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.zm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,12,41,0.3) 0%, rgba(15,12,41,0.85) 100%);
  z-index: 1;
}

.zm-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.zm-hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  animation: float-particle 6s ease-in-out infinite;
}

.zm-hero__particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 8s; }
.zm-hero__particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; animation-duration: 6s; }
.zm-hero__particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; animation-duration: 7s; }
.zm-hero__particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.5s; animation-duration: 9s; }
.zm-hero__particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 1.5s; animation-duration: 6.5s; }
.zm-hero__particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 3s; animation-duration: 8.5s; }
.zm-hero__particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 2.5s; animation-duration: 7.5s; }
.zm-hero__particle:nth-child(8) { left: 90%; top: 55%; animation-delay: 1.8s; animation-duration: 6.8s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.zm-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 800px;
}

.zm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 40px;
  padding: 6px 20px;
  font-size: 14px;
  color: var(--zm-accent-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.zm-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--zm-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.zm-hero__title {
  font-size: 52px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.zm-hero__title-highlight {
  background: linear-gradient(90deg, var(--zm-accent-light), var(--zm-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zm-hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.zm-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.zm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--zm-radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.zm-btn--primary {
  background: var(--zm-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(108, 60, 225, 0.4);
}

.zm-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 60, 225, 0.5);
}

.zm-btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.zm-btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.zm-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zm-hero__stat {
  text-align: center;
}

.zm-hero__stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.zm-hero__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ========================================
   Section 2: Product Intro
   ======================================== */
.zm-intro {
  padding: 100px 0;
  background: var(--zm-bg);
}

.zm-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.zm-intro__image {
  position: relative;
  border-radius: var(--zm-radius-lg);
  overflow: hidden;
  box-shadow: var(--zm-shadow-lg);
  aspect-ratio: 5/3;
  background: var(--zm-gradient);
}

.zm-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zm-intro__image-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--zm-gradient);
  opacity: 0.15;
  top: -20px;
  right: -20px;
}

.zm-intro__text .zm-section-label {
  margin-bottom: 12px;
}

.zm-intro__text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.zm-intro__text p {
  font-size: 16px;
  color: var(--zm-text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
}

.zm-intro__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zm-intro__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.zm-intro__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--zm-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.zm-intro__feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2.5;
}

.zm-intro__feature-text {
  font-size: 15px;
  color: var(--zm-text-secondary);
  line-height: 1.6;
}

.zm-intro__feature-text strong {
  color: var(--zm-text);
}

/* ========================================
   Section Label (shared)
   ======================================== */
.zm-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--zm-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zm-section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--zm-gradient);
  border-radius: 2px;
}

/* ========================================
   Section 3: Core Features
   ======================================== */
.zm-features {
  padding: 100px 0;
  background: linear-gradient(180deg, #F0EDFF 0%, var(--zm-bg) 100%);
}

.zm-features__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.zm-features__header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.zm-features__header p {
  font-size: 16px;
  color: var(--zm-text-secondary);
}

.zm-features__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.zm-feature-card {
  background: var(--zm-bg-card);
  border-radius: var(--zm-radius-md);
  padding: 40px 32px;
  box-shadow: var(--zm-shadow-sm);
  border: 1px solid var(--zm-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.zm-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--zm-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.zm-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--zm-shadow-lg);
}

.zm-feature-card:hover::before {
  opacity: 1;
}

.zm-feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--zm-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.zm-feature-card__icon--promotion {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.zm-feature-card__icon--data {
  background: linear-gradient(135deg, #DBEAFE, #93C5FD);
}

.zm-feature-card__icon--manage {
  background: linear-gradient(135deg, #D1FAE5, #6EE7B7);
}

.zm-feature-card__icon svg {
  width: 30px;
  height: 30px;
}

.zm-feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.zm-feature-card p {
  font-size: 14px;
  color: var(--zm-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.zm-feature-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zm-feature-card__list li {
  font-size: 13px;
  color: var(--zm-text-secondary);
  padding-left: 20px;
  position: relative;
}

.zm-feature-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zm-gradient);
}

.zm-features__visual {
  border-radius: var(--zm-radius-lg);
  overflow: hidden;
  box-shadow: var(--zm-shadow-lg);
  aspect-ratio: 16/9;
  background: var(--zm-gradient-hero);
  position: relative;
}

.zm-features__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.zm-features__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.6), rgba(59, 130, 246, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.zm-features__visual-text {
  text-align: center;
  color: #FFFFFF;
}

.zm-features__visual-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.zm-features__visual-text p {
  font-size: 16px;
  opacity: 0.8;
}

/* ========================================
   Section 4: Business Coverage
   ======================================== */
.zm-business {
  padding: 100px 0;
  background: var(--zm-bg);
}

.zm-business__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.zm-business__header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.zm-business__header p {
  font-size: 16px;
  color: var(--zm-text-secondary);
}

.zm-business__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.zm-business-item {
  background: var(--zm-bg-card);
  border-radius: var(--zm-radius-md);
  padding: 28px 16px;
  text-align: center;
  border: 1px solid var(--zm-border);
  transition: all 0.3s ease;
  cursor: default;
}

.zm-business-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--zm-shadow-md);
  border-color: var(--zm-primary-light);
}

.zm-business-item__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--zm-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
}

.zm-business-item__icon--food { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.zm-business-item__icon--shop { background: linear-gradient(135deg, #FCE7F3, #F9A8D4); }
.zm-business-item__icon--card { background: linear-gradient(135deg, #E0E7FF, #A5B4FC); }
.zm-business-item__icon--express { background: linear-gradient(135deg, #D1FAE5, #6EE7B7); }
.zm-business-item__icon--car { background: linear-gradient(135deg, #DBEAFE, #93C5FD); }
.zm-business-item__icon--movie { background: linear-gradient(135deg, #FEE2E2, #FCA5A5); }
.zm-business-item__icon--phone { background: linear-gradient(135deg, #F3E8FF, #C4B5FD); }
.zm-business-item__icon--live { background: linear-gradient(135deg, #FEF3C7, #FBBF24); }
.zm-business-item__icon--free { background: linear-gradient(135deg, #CCFBF1, #5EEAD4); }
.zm-business-item__icon--recycle { background: linear-gradient(135deg, #ECFDF5, #86EFAC); }

.zm-business-item__icon svg {
  width: 26px;
  height: 26px;
}

.zm-business-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.zm-business-item p {
  font-size: 12px;
  color: var(--zm-text-light);
  line-height: 1.5;
}

/* ========================================
   Section 5: Data Dashboard
   ======================================== */
.zm-dashboard {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--zm-bg) 0%, #F0EDFF 100%);
}

.zm-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.zm-dashboard__text .zm-section-label {
  margin-bottom: 12px;
}

.zm-dashboard__text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.zm-dashboard__text > p {
  font-size: 16px;
  color: var(--zm-text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.zm-dashboard__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.zm-dashboard__metric {
  background: var(--zm-bg-card);
  border-radius: var(--zm-radius-sm);
  padding: 20px;
  border: 1px solid var(--zm-border);
  transition: all 0.3s ease;
}

.zm-dashboard__metric:hover {
  box-shadow: var(--zm-shadow-md);
  border-color: var(--zm-primary-light);
}

.zm-dashboard__metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.zm-dashboard__metric-icon--purple { background: #F3E8FF; color: var(--zm-primary); }
.zm-dashboard__metric-icon--blue { background: #DBEAFE; color: #3B82F6; }
.zm-dashboard__metric-icon--green { background: #D1FAE5; color: #10B981; }
.zm-dashboard__metric-icon--amber { background: #FEF3C7; color: #F59E0B; }

.zm-dashboard__metric h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.zm-dashboard__metric p {
  font-size: 12px;
  color: var(--zm-text-light);
}

.zm-dashboard__visual {
  position: relative;
  border-radius: var(--zm-radius-lg);
  overflow: hidden;
  box-shadow: var(--zm-shadow-lg);
  aspect-ratio: 4/3;
  background: #1E1B4B;
}

.zm-dashboard__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.zm-dashboard__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.5), rgba(30, 27, 75, 0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.zm-dashboard__mock-chart {
  width: 80%;
  max-width: 360px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
}

.zm-dashboard__mock-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(139, 92, 246, 0.6);
  transition: height 0.6s ease;
}

.zm-dashboard__mock-bar:nth-child(1) { height: 45%; background: rgba(245, 158, 11, 0.7); }
.zm-dashboard__mock-bar:nth-child(2) { height: 65%; background: rgba(139, 92, 246, 0.7); }
.zm-dashboard__mock-bar:nth-child(3) { height: 40%; background: rgba(59, 130, 246, 0.7); }
.zm-dashboard__mock-bar:nth-child(4) { height: 80%; background: rgba(139, 92, 246, 0.7); }
.zm-dashboard__mock-bar:nth-child(5) { height: 55%; background: rgba(16, 185, 129, 0.7); }
.zm-dashboard__mock-bar:nth-child(6) { height: 90%; background: rgba(245, 158, 11, 0.7); }
.zm-dashboard__mock-bar:nth-child(7) { height: 70%; background: rgba(139, 92, 246, 0.7); }

.zm-dashboard__mock-label {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

/* ========================================
   Section 6: How It Works
   ======================================== */
.zm-how {
  padding: 100px 0;
  background: var(--zm-bg);
}

.zm-how__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.zm-how__header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.zm-how__header p {
  font-size: 16px;
  color: var(--zm-text-secondary);
}

.zm-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.zm-how__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--zm-primary-light), var(--zm-primary), var(--zm-accent));
  z-index: 0;
}

.zm-how__step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.zm-how__step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--zm-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(108, 60, 225, 0.3);
  transition: transform 0.3s ease;
}

.zm-how__step:hover .zm-how__step-num {
  transform: scale(1.1);
}

.zm-how__step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.zm-how__step p {
  font-size: 14px;
  color: var(--zm-text-secondary);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ========================================
   Section 7: Advantages
   ======================================== */
.zm-advantages {
  padding: 100px 0;
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
  color: #FFFFFF;
}

.zm-advantages__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.zm-advantages__header .zm-section-label {
  color: var(--zm-accent-light);
}

.zm-advantages__header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.zm-advantages__header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.zm-advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.zm-advantage-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--zm-radius-md);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.zm-advantage-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.zm-advantage-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.zm-advantage-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
}

.zm-advantage-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--zm-accent-light);
  fill: none;
  stroke-width: 2;
}

.zm-advantage-card h4 {
  font-size: 18px;
  font-weight: 700;
}

.zm-advantage-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ========================================
   Section 8: CTA
   ======================================== */
.zm-cta {
  padding: 100px 0;
  background: var(--zm-bg);
  text-align: center;
}

.zm-cta__box {
  background: var(--zm-gradient);
  border-radius: var(--zm-radius-xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.zm-cta__box::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -50px;
}

.zm-cta__box::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -60px;
  left: -30px;
}

.zm-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.zm-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.zm-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.zm-btn--white {
  background: #FFFFFF;
  color: var(--zm-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.zm-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.zm-btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.zm-btn--ghost:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Animations
   ======================================== */
.zm-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.zm-fade-up.zm-visible {
  opacity: 1;
  transform: translateY(0);
}

.zm-fade-up-delay-1 { transition-delay: 0.1s; }
.zm-fade-up-delay-2 { transition-delay: 0.2s; }
.zm-fade-up-delay-3 { transition-delay: 0.3s; }
.zm-fade-up-delay-4 { transition-delay: 0.4s; }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .zm-features__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .zm-business__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .zm-how__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .zm-how__steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .zm-hero {
    min-height: 500px;
  }

  .zm-hero__title {
    font-size: 36px;
  }

  .zm-hero__subtitle {
    font-size: 15px;
  }

  .zm-hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .zm-hero__stat-num {
    font-size: 24px;
  }

  .zm-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zm-features__cards {
    grid-template-columns: 1fr;
  }

  .zm-business__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zm-dashboard__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zm-how__steps {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .zm-advantages__grid {
    grid-template-columns: 1fr;
  }

  .zm-cta__box {
    padding: 48px 24px;
  }

  .zm-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .zm-hero__title {
    font-size: 28px;
  }

  .zm-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .zm-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .zm-intro__text h2,
  .zm-features__header h2,
  .zm-business__header h2,
  .zm-dashboard__text h2,
  .zm-how__header h2,
  .zm-advantages__header h2,
  .zm-cta h2 {
    font-size: 28px;
  }

  .zm-business__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .zm-dashboard__metrics {
    grid-template-columns: 1fr;
  }
}
