/* Hero Section */
.xm-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
  padding: 80px 0 60px;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.xm-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #202124;
  line-height: 1.3;
  margin-bottom: 20px;
}

.xm-hero-subtitle {
  font-size: 17px;
  color: #5f6368;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.xm-hero-image {
  max-width: 100%;
  height: auto;
}

/* Features Section */
.xm-feature-card {
  border: 1px solid #e8eaed !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease !important;
  background: #fff !important;
}

.xm-feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
  transform: translateY(-4px);
  border-color: #d2e3fc !important;
}

.xm-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.xm-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 10px;
}

.xm-feature-desc {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.7;
}

/* Steps Section */
.xm-steps-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.xm-step-item {
  text-align: center;
  position: relative;
}

.xm-step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
}

.xm-step-arrow {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: #bdc1c6;
  font-size: 24px;
}

.xm-step-title {
  font-size: 16px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 8px;
}

.xm-step-desc {
  font-size: 13px;
  color: #5f6368;
  line-height: 1.6;
  max-width: 180px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .xm-hero-title {
    font-size: 30px;
  }
  .xm-hero {
    padding: 48px 0 40px;
    min-height: auto;
  }
  .xm-step-arrow {
    display: none;
  }
}
