
.whitetxt{
	color:#fff;
}
.crms-hero {
  margin-top: 80px;
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.crms-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.crms-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.crms-hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.crms-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.crms-hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.crms-hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
  flex-wrap: wrap;
}
.crms-stat {
  text-align: center;
}

.crms-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.crms-stat-label {
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 500;
}

.crms-btn-large {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.crms-btn-primary {
  background: var(--primary-color);
  color: white;
}

.crms-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.crms-btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.crms-btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.crms-btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.crms-btn-outline:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.crms-section {
  padding: var(--spacing-2xl) 0;
}

.crms-section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.crms-section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.crms-section-title.centered {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.crms-section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.6;
}

.crms-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.crms-service-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.crms-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.crms-service-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-sm);
}

.crms-service-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.crms-service-list {
  list-style: none;
  padding: 0;
}

.crms-service-list li {
  padding: var(--spacing-xs) 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.5;
}

.crms-service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.crms-web-platform {
  background: var(--background-light);
}

.crms-platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

.crms-feature-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.crms-feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.crms-feature-icon {
  font-size: 40px;
  margin-bottom: var(--spacing-sm);
}

.crms-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.crms-feature-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 15px;
}

.crms-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.crms-industry-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.crms-industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.crms-industry-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.crms-industry-card ul {
  list-style: none;
  padding: 0;
}

.crms-industry-card ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-medium);
  font-size: 15px;
}

.crms-industry-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 20px;
}

.crms-why-choose {
  background: var(--background-light);
}

.crms-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.crms-benefit-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.crms-benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.crms-benefit-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.crms-benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.crms-benefit-card p {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.5;
}

.crms-key-benefits {
  max-width: 800px;
  margin: 0 auto;
}

.crms-benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.crms-benefit-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.crms-benefit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.crms-check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.crms-benefit-item span:last-child {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.crms-cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: var(--spacing-2xl) 0;
}

.crms-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.crms-cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: white;
}

.crms-cta-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

.crms-cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}