/* CRM Software Development CSS */
:root {
  --crm-primary: #1a2e44;
  --crm-primary-light: #2c4a6e;
  --crm-accent: #B5246A;
  --crm-accent-light: rgba(181, 36, 106, 0.08);
  --crm-text: #4a4a58;
  --crm-heading: #1c1c1e;
  --crm-bg: #FFFFFF;
  --crm-surface: #F8FAFC;
  --crm-border: #E8E4DC;
  --crm-shadow: 0 10px 30px rgba(26, 46, 68, 0.05);
  --crm-shadow-hover: 0 15px 40px rgba(26, 46, 68, 0.1);
}

.crm-page {
  background-color: var(--crm-bg);
  color: var(--crm-text);
  font-family: 'Inter', sans-serif;
}

/* Hero Section */
.crm-hero {
  padding: 150px 20px 80px;
  background: var(--crm-surface);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--crm-border);
}

.crm-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(circle at top right, var(--crm-accent-light) 0%, transparent 40%);
  pointer-events: none;
}

.crm-hero-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.crm-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--crm-heading);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 24px;
}

.crm-hero-title span {
  color: var(--crm-accent);
}

.crm-hero-desc {
  font-size: 1.125rem;
  color: var(--crm-text);
  margin-bottom: 32px;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.crm-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--crm-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 46, 68, 0.15);
}

.crm-hero-cta:hover {
  transform: translateY(-2px);
  background-color: var(--crm-primary-light);
  box-shadow: 0 8px 25px rgba(26, 46, 68, 0.25);
}

/* Base Sections */
.crm-section {
  padding: 80px 20px;
  background-color: var(--crm-bg);
}

.crm-section-overview {
  padding-bottom: 32px;
}

.crm-section-alt {
  background-color: var(--crm-surface);
}

.crm-container {
  max-width: 1200px;
  margin: 0 auto;
}

.crm-section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 700px;
  margin-inline: auto;
}

.crm-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  color: var(--crm-heading);
  margin-bottom: 16px;
  font-weight: 700;
}

.crm-section-desc {
  font-size: 1.05rem;
  color: var(--crm-text);
  line-height: 1.6;
}

/* Overview Cards */
.crm-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1050px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .crm-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.crm-overview-card {
  background: var(--crm-bg);
  border: 1px solid var(--crm-border);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.crm-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--crm-shadow-hover);
  border-color: var(--crm-accent-light);
}

.crm-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--crm-surface);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--crm-accent);
  font-size: 32px;
  transition: all 0.3s ease;
}

.crm-overview-card:hover .crm-icon-wrap {
  background: var(--crm-accent);
  color: #fff;
  transform: scale(1.05) rotate(-5deg);
}

.crm-overview-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  color: var(--crm-heading);
  margin-bottom: 16px;
}

.crm-overview-card p {
  color: var(--crm-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Features List Layout */
.crm-features-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.crm-feature-row {
  display: flex;
  align-items: center;
  background: var(--crm-bg);
  border: 1px solid var(--crm-border);
  padding: 24px 32px;
  border-radius: 12px;
  gap: 24px;
  transition: all 0.3s ease;
}

.crm-feature-row:hover {
  background: var(--crm-surface);
  border-color: var(--crm-primary-light);
}

@media (max-width: 600px) {
  .crm-feature-row {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

.crm-feature-icon {
  font-size: 36px;
  color: var(--crm-primary);
  flex-shrink: 0;
}

.crm-feature-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  color: var(--crm-heading);
  margin-bottom: 8px;
}

.crm-feature-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--crm-text);
}

/* Timeline Process */
.crm-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

@media (max-width: 992px) {
  .crm-timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media (max-width: 576px) {
  .crm-timeline {
    grid-template-columns: 1fr;
  }
}

.crm-timeline-step {
  position: relative;
  padding: 32px 24px;
  background: var(--crm-bg);
  border-radius: 16px;
  border: 1px solid var(--crm-border);
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.crm-timeline-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--crm-shadow);
}

.crm-step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--crm-primary);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
}

.crm-timeline-step h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--crm-heading);
  font-size: 1.15rem;
  margin-bottom: 12px;
  margin-top: 8px;
}

.crm-timeline-step p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--crm-text);
}

/* CTA Section */
.crm-cta {
  padding: 80px 20px;
  background-color: var(--crm-bg);
}

.crm-cta-box {
  background: linear-gradient(135deg, var(--crm-primary), var(--crm-primary-light));
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  box-shadow: 0 20px 40px rgba(26, 46, 68, 0.15);
}

.crm-cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  font-weight: 700;
}

.crm-cta-box p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-inline: auto;
}

.crm-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--crm-primary);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.crm-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
