/* ================================
   HERO SECTION
   ================================ */

.hero {
  background: linear-gradient(
    135deg,
    #000 0%,
    #1a0a3e 50%,
    #000 100%
  ) !important;
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(139, 92, 246, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  animation: slideDown 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.95;
  animation: slideUp 0.8s ease-out;
}

/* Introduction Section - Quote & Value Prop */
.amf-intro-section {
  background: linear-gradient(135deg, #f9f9fc 0%, #ffffff 100%);
  padding: 80px 0 !important;
}

.amf-quote {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: #1a0a3e;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 30px;
  border-left: 5px solid #330cb3;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(51, 12, 179, 0.08);
  line-height: 1.6;
}

.highlight-stat {
  color: #330cb3;
  font-weight: 700;
  font-size: 2rem;
  font-style: normal;
}

.amf-value-prop {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.8;
}

.amf-value-prop strong {
  color: #330cb3;
  font-weight: 700;
}

.amf-section {
  padding: 60px 0;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.amf-section.alt-bg {
  background-color: #f9f9fc;
}

/* Typography & Titles */
.amf-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #330cb3; /* Theme primary color */
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  padding: 0;
  border: none;
  line-height: 1.2;
}

.amf-section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #330cb3;
  border-radius: 2px;
}
/* 1. Solutions List Styling */
/* 1. Solutions List Styling */
.amf-solutions-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .amf-solutions-container {
    grid-template-columns: 1fr 1fr;
  }
}

.amf-solution-item {
  position: relative;
  padding: 30px;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(51, 12, 179, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.amf-solution-item:hover {
  transform: translateY(-5px);
}

.amf-solution-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #330cb3;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.amf-solution-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 15px;
}

.amf-solution-detail {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

/* 2. Expertise Tech-Text Layout */
.amf-expertise-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .amf-expertise-flow {
    grid-template-columns: 1fr 1fr;
  }
}

.amf-expertise-block {
  padding: 30px;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(51, 12, 179, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.amf-expertise-block:hover {
  transform: translateY(-5px);
}

.amf-expertise-header {
  font-size: 1.3rem;
  font-weight: 700;
  color: #330cb3;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.amf-expertise-text {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.6;
}

.amf-expertise-sub {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

/* 3. Why Choose Us - Simple innovative list */
.amf-reasons-list {
  counter-reset: reason-counter;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .amf-reasons-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

.amf-reason-item {
  position: relative;
  padding: 30px;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(51, 12, 179, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.amf-reason-item:hover {
  transform: translateY(-5px);
}

.amf-reason-item::before {
  counter-increment: reason-counter;
  content: "0" counter(reason-counter);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(51, 12, 179, 0.1);
  position: absolute;
  top: -15px;
  left: 0;
  line-height: 1;
  z-index: 0;
}

.amf-reason-content {
  position: relative;
  z-index: 1;
}

.amf-reason-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a0a3e;
  margin-bottom: 10px;
}

.amf-reason-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

/* 4. Process Section - Consultants Card Style */
.process {
  padding: 80px 0;
  background-color: #ffffff;
}

.process .section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #330cb3;
}

.process-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #6b7280;
  font-size: 1.1rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  /* Matching .consultant-card-v2 style */
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 30px;
  border: 1px solid rgba(51, 12, 179, 0.1);
  box-shadow: 0 10px 30px rgba(51, 12, 179, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(51, 12, 179, 0.1);
}

.step-number {
  /* Styled like .consultant-type-badge but circular or appropriate for numbering */
  background: #330cb3;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%; /* Circle for step number */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(51, 12, 179, 0.3);
}

.process-step h3 {
  font-size: 1.25rem;
  color: #1f2937; /* Matching consultant-role color */
  margin-bottom: 15px;
  font-weight: 700;
}

.process-step p {
  color: #4b5563; /* Matching consultant-description */
  font-size: 0.95rem;
  line-height: 1.6;
}
