/* ================= CRM HERO ================= */
.crm-hero {
  padding: 100px 0 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.crm-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.crm-hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}

.crm-hero-content h1 span {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crm-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 16px 32px;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

.crm-hero-visual {
  position: relative;
}

.visual-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.visual-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ================= KEY FEATURES ================= */
.crm-features {
  padding: 100px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #475569;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 12px;
}

.feature-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

/* ================= BENEFITS ================= */
.crm-benefits {
  padding: 100px 0;
  background: white;
}

.benefits-inner {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 30px;
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.benefits-title h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 20px;
}

.benefits-title p {
  color: #475569;
  font-size: 18px;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #334155;
  font-weight: 500;
  background: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.benefit-item span {
  color: #10b981;
  font-size: 20px;
}

/* ================= WHY CHOOSE ================= */
.crm-why {
  padding: 100px 0;
  background: #0f172a;
  color: white;
  text-align: center;
}

.crm-why-inner {
  max-width: 800px;
  margin: 0 auto;
}

.crm-why h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.crm-why p {
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .crm-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .benefits-inner {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .crm-hero h1 {
    font-size: 40px;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
}
