/* 活动策划信息发布平台 - 首页样式 */
/* 杭州恬恩科技有限公司 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --zh-primary: #E95254;
  --zh-primary-dark: #c7393b;
  --zh-primary-light: #ff6b6d;
  --zh-accent-1: #FFF8F0;
  --zh-accent-2: #E8DED4;
  --zh-heading: #1a1a1a;
  --zh-text: #555555;
  --zh-text-light: #888888;
  --zh-grey-bg: #F9F9F9;
  --zh-white: #FFFFFF;
  --zh-accent-gold: #D4A853;
  --zh-accent-dark: #2C3E50;
  --zh-gradient: linear-gradient(135deg, #E95254 0%, #ff7b7d 100%);
  --zh-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --zh-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --zh-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
}

body {
  font-family: 'Questrial', 'Inter', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  line-height: 1.6;
  color: var(--zh-text);
  background: var(--zh-white);
  overflow-x: hidden;
}

.zh_container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 98px;
}

@media (max-width: 1200px) {
  .zh_container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }
}

/* ========== Hero Section - 通栏背景布局 ========== */
.zh_hero_section {
  padding: 0;
  background: var(--zh-white);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.zh_hero_bg_pattern {
  display: none;
}

.zh_hero_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  width: 100%;
  max-width: none;
}

/* 左侧区域 - 背景通栏到左边缘 */
.zh_hero_left {
  background: var(--zh-accent-1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 80px 40px 80px 20px;
}

/* 左侧内容区 - 控制版心宽度 */
.zh_hero_left_content {
  width: 100%;
  max-width: 620px;
}

.zh_hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(233, 82, 84, 0.1);
  color: var(--zh-primary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 24px;
}

.zh_hero_badge i {
  font-size: 14px;
}

.zh_hero_title {
  font-size: 72px;
  font-weight: 500;
  color: var(--zh-heading);
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.zh_hero_desc {
  font-size: 16px;
  color: var(--zh-text);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 500px;
}

.zh_hero_features {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.zh_hero_feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--zh-text);
}

.zh_hero_feature i {
  color: var(--zh-primary);
  font-size: 16px;
}

.zh_hero_buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.zh_btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  background: var(--zh-primary);
  color: var(--zh-white);
  font-weight: 400;
  font-size: 21px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 208px;
}

.zh_btn_primary:hover {
  background: var(--zh-primary-dark);
  color: var(--zh-white);
}

.zh_btn_primary i {
  font-size: 16px;
}

.zh_btn_outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: transparent;
  color: var(--zh-heading);
  border: 1px solid var(--zh-text);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh_btn_outline:hover {
  background: var(--zh-heading);
  color: var(--zh-white);
  border-color: var(--zh-heading);
}

/* Trust Indicators */
.zh_hero_trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(233, 82, 84, 0.05);
  border-left: 3px solid var(--zh-primary);
}

.zh_hero_trust_text {
  font-size: 14px;
  color: var(--zh-text);
  line-height: 1.6;
}

.zh_hero_trust_text i {
  color: var(--zh-primary);
  margin-right: 8px;
}

/* Hero Right - 背景通栏到右边缘 */
.zh_hero_right {
  position: relative;
  background: var(--zh-accent-2);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 20px 40px 40px;
}

/* 右侧内容区 - 控制版心宽度 */
.zh_hero_right_content {
  width: 100%;
  max-width: 620px;
}

.zh_hero_image_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zh_hero_card_large {
  position: relative;
  width: 85%;
  max-width: 520px;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.zh_hero_card_large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Cards */
.zh_hero_float_card {
  position: absolute;
  background: var(--zh-white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 14px 18px;
  z-index: 10;
}

.zh_float_card_1 {
  top: 80px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.zh_float_card_2 {
  bottom: 100px;
  right: 20px;
}

.zh_float_card_3 {
  display: none;
}

.zh_float_card_4 {
  top: 140px;
  right: 30px;
}

.zh_float_icon {
  width: 48px;
  height: 48px;
  background: var(--zh-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zh_float_icon i {
  color: var(--zh-white);
  font-size: 20px;
}

.zh_float_number {
  font-size: 24px;
  font-weight: 600;
  color: var(--zh-heading);
  line-height: 1;
}

.zh_float_label {
  font-size: 13px;
  color: var(--zh-text-light);
  margin-top: 4px;
}

.zh_float_rating {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.zh_float_rating i {
  color: #FFB800;
  font-size: 14px;
}

.zh_float_text {
  font-size: 14px;
  color: var(--zh-text);
  font-weight: 500;
}

.zh_float_mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zh_float_mini i {
  color: var(--zh-primary);
  font-size: 24px;
}

.zh_float_mini_num {
  font-size: 20px;
  font-weight: 600;
  color: var(--zh-heading);
}

.zh_float_mini_text {
  font-size: 12px;
  color: var(--zh-text-light);
}

.zh_float_badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zh_float_badge i {
  color: var(--zh-accent-gold);
  font-size: 18px;
}

.zh_float_badge span {
  font-size: 14px;
  color: var(--zh-heading);
  font-weight: 500;
}

/* ========== Stats Section ========== */
.zh_stats_section {
  padding: 80px 0;
  background: var(--zh-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.zh_stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.zh_stat_item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.zh_stat_item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.zh_stat_icon {
  margin-bottom: 16px;
}

.zh_stat_icon i {
  font-size: 32px;
  color: var(--zh-primary);
}

.zh_stat_number {
  font-size: 56px;
  font-weight: 600;
  color: var(--zh-heading);
  line-height: 1.2;
  margin-bottom: 8px;
}

.zh_stat_label {
  font-size: 15px;
  color: var(--zh-text-light);
}

/* ========== Service Intro Section ========== */
.zh_service_intro {
  padding: 120px 0;
}

.zh_service_dark {
  background: var(--zh-white);
}

.zh_service_light {
  background: var(--zh-accent-1);
}

.zh_service_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zh_service_grid_reverse {
  direction: rtl;
}

.zh_service_grid_reverse>* {
  direction: ltr;
}

.zh_service_image_side img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.zh_service_tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--zh-accent-1);
  color: var(--zh-primary);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.zh_service_light .zh_service_tag {
  background: var(--zh-white);
}

.zh_service_title {
  font-size: 67px;
  font-weight: 400;
  color: var(--zh-heading);
  margin-bottom: 24px;
  line-height: 1.2;
}

.zh_service_desc {
  font-size: 16px;
  color: var(--zh-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.zh_service_features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.zh_service_feature_item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--zh-text);
}

.zh_service_feature_item i {
  font-size: 16px;
  color: var(--zh-primary);
}

.zh_btn_service {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--zh-primary);
  color: var(--zh-white);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh_btn_service:hover {
  background: var(--zh-primary-dark);
  color: var(--zh-white);
}

/* ========== Projects Section ========== */
.zh_projects_section {
  padding: 120px 0;
  background: var(--zh-white);
}

.zh_projects_alt {
  background: var(--zh-accent-1);
}

.zh_section_header {
  text-align: center;
  margin-bottom: 60px;
}

.zh_section_subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: var(--zh-accent-1);
  color: var(--zh-primary);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
}

.zh_projects_alt .zh_section_subtitle {
  background: var(--zh-white);
}

.zh_section_title {
  font-size: 67px;
  font-weight: 400;
  color: var(--zh-heading);
  margin-bottom: 16px;
  line-height: 1.2;
}

.zh_projects_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.zh_project_card {
  background: var(--zh-white);
  overflow: hidden;
  transition: all 0.3s ease;
}

.zh_projects_alt .zh_project_card {
  background: var(--zh-accent-1);
}

.zh_project_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.zh_project_image {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: var(--zh-grey-bg);
}

.zh_project_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zh_project_card:hover .zh_project_image img {
  transform: scale(1.1);
}

.zh_project_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(233, 82, 84, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zh_project_card:hover .zh_project_overlay {
  opacity: 1;
}

.zh_project_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--zh-white);
  color: var(--zh-primary);
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh_project_link:hover {
  transform: scale(1.1);
  color: var(--zh-primary);
}

.zh_project_content {
  padding: 24px;
  text-align: center;
}

.zh_project_title {
  font-size: 28px;
  font-weight: 400;
  color: var(--zh-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.zh_project_title a {
  color: var(--zh-heading);
  text-decoration: none;
  transition: color 0.3s;
}

.zh_project_title a:hover {
  color: var(--zh-primary);
}

.zh_projects_more {
  text-align: center;
  margin-top: 50px;
}

/* ========== Why Section ========== */
.zh_why_section {
  padding: 120px 0;
  background: var(--zh-white);
}

.zh_why_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zh_why_cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zh_why_card {
  background: var(--zh-white);
  padding: 24px;
  border: 1px solid var(--zh-grey-bg);
  transition: all 0.3s ease;
}

.zh_why_card:hover {
  border-color: var(--zh-primary);
  box-shadow: 0 10px 30px rgba(233, 82, 84, 0.1);
}

.zh_why_card_top,
.zh_why_card_bottom {
  transform: none;
}

.zh_why_card:hover.zh_why_card_top,
.zh_why_card:hover.zh_why_card_bottom {
  transform: translateY(-5px);
}

.zh_why_icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.zh_why_icon i {
  font-size: 32px;
  color: var(--zh-primary);
}

.zh_why_card_title {
  font-size: 28px;
  font-weight: 400;
  color: var(--zh-heading);
  margin-bottom: 8px;
}

.zh_why_card_desc {
  font-size: 16px;
  color: var(--zh-text);
  line-height: 1.6;
}

.zh_why_badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--zh-accent-1);
  color: var(--zh-primary);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.zh_why_title {
  font-size: 67px;
  font-weight: 400;
  color: var(--zh-heading);
  margin-bottom: 24px;
  line-height: 1.2;
}

.zh_why_desc {
  font-size: 16px;
  color: var(--zh-text);
  line-height: 1.8;
  margin-bottom: 32px;
}


.zh_why_stats {
  display: flex;
  gap: 40px;
}

.zh_why_stat_num {
  font-size: 50px;
  font-weight: 400;
  color: var(--zh-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.zh_why_stat_text {
  font-size: 16px;
  color: var(--zh-text);
}

/* ========== Process Section ========== */
.zh_process_section {
  padding: 120px 0;
  background: var(--zh-accent-1);
}

.zh_section_header_center {
  text-align: center;
  margin-bottom: 80px;
}

.zh_section_header_center .zh_section_subtitle {
  background: var(--zh-white);
}

.zh_section_desc {
  font-size: 18px;
  color: var(--zh-text);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.zh_process_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.zh_step_card {
  background: var(--zh-white);
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.zh_step_card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(233, 82, 84, 0.15);
  border-color: rgba(233, 82, 84, 0.2);
}

.zh_step_number {
  font-size: 60px;
  font-weight: 700;
  color: rgba(233, 82, 84, 0.1);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all 0.4s ease;
}

.zh_step_card:hover .zh_step_number {
  color: rgba(233, 82, 84, 0.2);
  transform: scale(1.1);
}

.zh_step_icon {
  width: 80px;
  height: 80px;
  background: var(--zh-accent-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.zh_step_card:hover .zh_step_icon {
  background: var(--zh-primary);
  transform: rotateY(180deg);
}

.zh_step_icon i {
  font-size: 32px;
  color: var(--zh-primary);
  transition: all 0.4s ease;
}

.zh_step_card:hover .zh_step_icon i {
  color: var(--zh-white);
  transform: rotateY(-180deg);
}

.zh_step_title {
  font-size: 22px;
  font-weight: 600;
  color: var(--zh-heading);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.zh_step_desc {
  font-size: 15px;
  color: var(--zh-text);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.zh_step_arrow {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--zh-primary);
  font-size: 24px;
  opacity: 0.3;
  z-index: 2;
}

.zh_step_card:last-child .zh_step_arrow {
  display: none;
}

@media (max-width: 1200px) {
  .zh_process_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .zh_step_arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .zh_process_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ========== About Section ========== */
.zh_about_title {
  font-size: 48px;
  font-weight: 600;
  color: var(--zh-heading);
  margin-bottom: 24px;
  line-height: 1.3;
}

.zh_about_desc {
  font-size: 16px;
  color: var(--zh-text);
  line-height: 1.9;
  margin-bottom: 16px;
}

.zh_about_desc strong {
  color: var(--zh-primary);
}

.zh_about_highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.zh_about_highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.zh_about_highlight i {
  font-size: 24px;
  color: var(--zh-primary);
  margin-top: 4px;
}

.zh_about_highlight strong {
  display: block;
  font-size: 16px;
  color: var(--zh-heading);
  margin-bottom: 4px;
}

.zh_about_highlight span {
  font-size: 14px;
  color: var(--zh-text-light);
}

.zh_about_image {
  position: relative;
}

.zh_about_image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--zh-shadow-lg);
}

.zh_about_badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--zh-white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  box-shadow: var(--zh-shadow-md);
}

.zh_about_badge i {
  color: var(--zh-accent-gold);
  font-size: 24px;
}

.zh_about_badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--zh-heading);
}

/* ========== CTA Section ========== */
.zh_cta_section {
  padding: 100px 0;
  background: var(--zh-grey-bg);
}

.zh_cta_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.zh_cta_card {
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.zh_cta_user {
  background: var(--zh-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.zh_cta_user:hover {
  box-shadow: var(--zh-shadow-lg);
  transform: translateY(-5px);
}

.zh_cta_provider {
  background: var(--zh-primary);
}

.zh_cta_provider:hover {
  box-shadow: 0 20px 50px rgba(233, 82, 84, 0.3);
  transform: translateY(-5px);
}

.zh_cta_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
}

.zh_cta_provider .zh_cta_icon {
  background: rgba(255, 255, 255, 0.2);
}

.zh_cta_provider .zh_cta_icon i {
  font-size: 32px;
  color: var(--zh-white);
}

.zh_cta_title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.zh_cta_user .zh_cta_title {
  color: var(--zh-heading);
}

.zh_cta_provider .zh_cta_title {
  color: var(--zh-white);
}

.zh_cta_subtitle {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.zh_cta_user .zh_cta_subtitle {
  color: var(--zh-text);
}

.zh_cta_provider .zh_cta_subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.zh_cta_btn_primary,
.zh_cta_btn_secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.zh_cta_btn_primary {
  background: var(--zh-primary);
  color: var(--zh-white);
}

.zh_cta_btn_primary:hover {
  background: var(--zh-primary-dark);
  color: var(--zh-white);
}

.zh_cta_btn_secondary {
  background: var(--zh-white);
  color: var(--zh-primary);
  border: none;
}

.zh_cta_btn_secondary:hover {
  background: var(--zh-accent-1);
  color: var(--zh-primary);
}

/* ========== Mission Section ========== */
.zh_mission_section {
  padding: 100px 0;
  background: var(--zh-accent-1);
}

.zh_mission_content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.zh_mission_quote {
  margin-bottom: 24px;
}

.zh_mission_quote i {
  font-size: 48px;
  color: var(--zh-primary);
  opacity: 0.3;
}

.zh_mission_text {
  font-size: 24px;
  line-height: 1.8;
  color: var(--zh-text);
  font-style: italic;
}

.zh_mission_text strong {
  color: var(--zh-primary);
  font-style: normal;
}

.zh_mission_brand {
  margin-top: 32px;
}

.zh_mission_brand span {
  font-size: 16px;
  color: var(--zh-text-light);
}

/* ========== Project Merchant ========== */
.zh_project_merchant {
  font-size: 14px;
  color: var(--zh-text-light);
  margin-top: 8px;
}

.zh_project_merchant i {
  margin-right: 6px;
  color: var(--zh-primary);
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
  .zh_hero_grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .zh_hero_left {
    justify-content: center;
    padding: 60px 40px;
  }

  .zh_hero_left_content {
    max-width: 100%;
  }

  .zh_hero_right {
    justify-content: center;
    min-height: 450px;
    padding: 30px;
  }

  .zh_hero_right_content {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .zh_hero_card_large {
    width: 70%;
    max-width: 400px;
  }

  .zh_hero_title {
    font-size: 52px;
  }

  .zh_hero_float_card {
    display: none;
  }

  .zh_service_grid,
  .zh_why_grid,
  .zh_about_grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zh_service_grid_reverse {
    direction: ltr;
  }

  .zh_service_title,
  .zh_section_title,
  .zh_why_title {
    font-size: 50px;
  }

  .zh_about_title {
    font-size: 40px;
  }


  .zh_cta_user .zh_cta_icon i {
    font-size: 32px;
    color: var(--zh-primary);
  }

  .zh_cta_provider .zh_cta_icon {
    background: rgba(255, 255, 255, 0.2);
  }

  .zh_cta_provider .zh_cta_icon i {
    font-size: 32px;
    color: var(--zh-white);
  }

  .zh_cta_title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .zh_cta_user .zh_cta_title {
    color: var(--zh-heading);
  }

  .zh_cta_provider .zh_cta_title {
    color: var(--zh-white);
  }

  .zh_cta_subtitle {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .zh_cta_user .zh_cta_subtitle {
    color: var(--zh-text);
  }

  .zh_cta_provider .zh_cta_subtitle {
    color: rgba(255, 255, 255, 0.85);
  }

  .zh_cta_btn_primary,
  .zh_cta_btn_secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
  }

  .zh_cta_btn_primary {
    background: var(--zh-primary);
    color: var(--zh-white);
  }

  .zh_cta_btn_primary:hover {
    background: var(--zh-primary-dark);
    color: var(--zh-white);
  }

  .zh_cta_btn_secondary {
    background: var(--zh-white);
    color: var(--zh-primary);
    border: none;
  }

  .zh_cta_btn_secondary:hover {
    background: var(--zh-accent-1);
    color: var(--zh-primary);
  }

  /* ========== Mission Section ========== */
  .zh_mission_section {
    padding: 100px 0;
    background: var(--zh-accent-1);
  }

  .zh_mission_content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .zh_mission_quote {
    margin-bottom: 24px;
  }

  .zh_mission_quote i {
    font-size: 48px;
    color: var(--zh-primary);
    opacity: 0.3;
  }

  .zh_mission_text {
    font-size: 24px;
    line-height: 1.8;
    color: var(--zh-text);
    font-style: italic;
  }

  .zh_mission_text strong {
    color: var(--zh-primary);
    font-style: normal;
  }

  .zh_mission_brand {
    margin-top: 32px;
  }

  .zh_mission_brand span {
    font-size: 16px;
    color: var(--zh-text-light);
  }

  /* ========== Project Merchant ========== */
  .zh_project_merchant {
    font-size: 14px;
    color: var(--zh-text-light);
    margin-top: 8px;
  }

  .zh_project_merchant i {
    margin-right: 6px;
    color: var(--zh-primary);
  }

  /* ========== Responsive Design ========== */
  @media (max-width: 1200px) {
    .zh_hero_grid {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .zh_hero_left {
      justify-content: center;
      padding: 60px 40px;
    }

    .zh_hero_left_content {
      max-width: 100%;
    }

    .zh_hero_right {
      justify-content: center;
      min-height: 450px;
      padding: 30px;
    }

    .zh_hero_right_content {
      max-width: 100%;
      display: flex;
      justify-content: center;
    }

    .zh_hero_card_large {
      width: 70%;
      max-width: 400px;
    }

    .zh_hero_title {
      font-size: 52px;
    }

    .zh_hero_float_card {
      display: none;
    }

    .zh_service_grid,
    .zh_why_grid,
    .zh_about_grid {
      grid-template-columns: 1fr;
      gap: 50px;
    }

    .zh_service_grid_reverse {
      direction: ltr;
    }

    .zh_service_title,
    .zh_section_title,
    .zh_why_title {
      font-size: 50px;
    }

    .zh_about_title {
      font-size: 40px;
    }


    .zh_stat_number {
      font-size: 28px;
    }

    .zh_service_image_side img {
      height: 300px;
    }
  }

  @media (max-width: 992px) {
    .zh_stats_grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .zh_stat_item:not(:last-child)::after {
      display: none;
    }

    .zh_projects_grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .zh_process_grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .zh_stat_number {
      font-size: 50px;
    }

    .zh_about_highlights {
      flex-direction: column;
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .zh_hero_section {
      padding: 0;
    }

    .zh_hero_left {
      justify-content: center;
      padding: 50px 20px;
    }

    .zh_hero_left_content {
      max-width: 100%;
    }

    .zh_hero_badge {
      font-size: 12px;
      padding: 6px 12px;
    }

    .zh_hero_title {
      font-size: 36px;
      letter-spacing: 0;
    }

    .zh_hero_features {
      flex-direction: column;
      gap: 10px;
    }

    .zh_hero_buttons {
      flex-direction: column;
      width: 100%;
    }

    .zh_hero_buttons a {
      width: 100%;
      justify-content: center;
    }

    .zh_hero_right {
      justify-content: center;
      min-height: 320px;
      padding: 20px;
    }

    .zh_hero_right_content {
      max-width: 100%;
      display: flex;
      justify-content: center;
    }

    .zh_hero_card_large {
      width: 80%;
      max-width: 300px;
    }

    .zh_stats_grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .zh_stat_number {
      font-size: 36px;
    }

    .zh_projects_grid {
      grid-template-columns: 1fr;
    }

    .zh_service_intro,
    .zh_projects_section,
    .zh_why_section,
    .zh_process_section,
    .zh_cta_section,
    .zh_about_section,
    .zh_mission_section {
      padding: 60px 0;
    }

    .zh_process_grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .zh_step_card {
      padding: 30px 20px;
    }

    .zh_service_title,
    .zh_section_title,
    .zh_why_title {
      font-size: 32px;
    }

    .zh_about_title {
      font-size: 28px;
    }

    .zh_cta_title {
      font-size: 24px;
    }

    .zh_project_title {
      font-size: 21px;
    }

    .zh_why_card_title,
    .zh_step_title {
      font-size: 21px;
    }

    .zh_cta_card {
      padding: 40px 24px;
    }

    .zh_mission_text {
      font-size: 18px;
    }

    .zh_why_stats {
      flex-direction: column;
      gap: 20px;
    }

    .zh_why_stat_num {
      font-size: 36px;
    }

    .zh_about_image img {
      height: 300px;
    }

    .zh_about_badge {
      position: relative;
      bottom: auto;
      left: auto;
      margin-top: 20px;
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    .zh_hero_title {
      font-size: 28px;
    }

    .zh_stat_number {
      font-size: 28px;
    }

    .zh_service_image_side img {
      height: 300px;
    }
  }