/* Overview Dynamic Section Styling */
.overview-dynamic-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  overflow: hidden;
  font-family: "Inter", "Segoe UI", sans-serif;
}

/* Decorative Background Elements */
.overview-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.overview-blob-1 {
  width: 450px;
  height: 450px;
  background: #3b82f6;
  top: -100px;
  left: -150px;
}
.overview-blob-2 {
  width: 500px;
  height: 500px;
  background: #10b981;
  bottom: -150px;
  right: -150px;
}

/* Section Header */
.overview-header {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
.overview-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.overview-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
.overview-header p {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Intro Cards Container */
.overview-intro-grid {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
.overview-intro-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.overview-intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.intro-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.intro-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.intro-icon-wrap.theme-blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.12);
}
.intro-icon-wrap.theme-emerald {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #059669;
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.12);
}

.card-theme-badge {
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-theme-badge.theme-blue {
  background: #eff6ff;
  color: #1d4ed8;
}
.card-theme-badge.theme-emerald {
  background: #ecfdf5;
  color: #047857;
}

.overview-intro-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 18px;
  line-height: 1.35;
}
.overview-intro-card p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Steps Section */
.overview-steps-wrapper {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}
.overview-steps-header {
  text-align: center;
  margin-bottom: 50px;
}
.overview-steps-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.overview-steps-header p {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
}

/* Steps Grid */
.overview-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.overview-step-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid #f1f5f9;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.overview-step-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.step-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.step-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.overview-step-card:hover .step-icon-circle {
  transform: scale(1.1) rotate(5deg);
}

.step-number-pill {
  font-size: 0.85rem;
  font-weight: 800;
  color: #94a3b8;
  background: #e2e8f0;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.overview-step-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
.overview-step-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .overview-header h2 {
    font-size: 2.2rem;
  }
  .overview-steps-header h3 {
    font-size: 1.8rem;
  }
  .overview-steps-wrapper {
    padding: 40px 25px;
  }
}
@media (max-width: 767px) {
  .overview-dynamic-section {
    padding: 60px 0;
  }
  .overview-header h2 {
    font-size: 1.85rem;
  }
  .overview-intro-card {
    padding: 25px;
  }
}
