/* section-fallback: workflow/advantage/cta — shared base (per-theme aliases in theme{N}.css) */
:root {
  --sf-theme-color: var(--theme-color, var(--theme-primary, #4a90d9));
  --sf-theme-color2: var(--theme-color2, var(--theme-primary-dark, #2c5282));
  --sf-theme-bg-light: var(--theme-bg-light, #f5f7fa);
  --sf-body-text: #757f95;
  --sf-color-white: #fff;
  --sf-color-dark: #1a2a3a;
}

.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }
.py-100 { padding: 100px 0; }

.site-heading { margin-bottom: 50px; position: relative; z-index: 1; }
.site-title-tagline {
  display: inline-block;
  color: var(--sf-theme-color);
  font-weight: 500;
  text-transform: capitalize;
  font-size: 18px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 15px;
}
.site-title-tagline.light { background: transparent; }
.site-title-tagline i {
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: var(--sf-theme-color);
  color: var(--sf-color-white);
  text-align: center;
  border-radius: 50px;
  margin-right: 5px;
}
.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  color: var(--sf-color-dark);
  margin-bottom: 0;
}

.choose-area { position: relative; }
.choose-item { display: flex; gap: 20px; margin: 30px 0; }
.choose-item-icon {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  line-height: 50px;
  background: var(--sf-theme-color);
  text-align: center;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.choose-item-icon img {
  width: 38px;
  filter: brightness(0) invert(1);
}
.choose-item-info { flex: 1; }
.choose-item-info h4 {
  color: var(--sf-color-dark);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}
.choose-item-info p { color: var(--sf-body-text); }
.choose-img { position: relative; text-align: right; min-height: 280px; }
.choose-img .img-1 {
  width: 70%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: inline-block;
}
.choose-img .img-shape {
  position: absolute;
  left: 0;
  top: 50px;
  width: 150px;
  max-width: 45%;
  z-index: -1;
}

.process-area { position: relative; }
.process-wrap {
  position: relative;
  background: var(--sf-theme-color2);
  border-radius: 20px;
  overflow: hidden;
}
.process-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.09;
  pointer-events: none;
}
.process-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-item { position: relative; }
.process-item .icon {
  height: 130px;
  width: 130px;
  line-height: 80px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  border: 2px dashed var(--sf-color-white);
  padding: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}
.process-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.process-item span {
  position: absolute;
  height: 35px;
  width: 35px;
  font-size: 14px;
  background: var(--sf-color-white);
  line-height: 35px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  color: var(--sf-theme-color);
  left: -3px;
  top: -13px;
  font-weight: 600;
  z-index: 2;
}
.process-item h4 {
  color: var(--sf-color-white);
  font-weight: 800;
  margin-bottom: 10px;
}
.process-item p { color: var(--sf-color-white); }
.process-item::before {
  content: url(../img/process/shape.png);
  position: absolute;
  right: -65px;
  top: 50px;
  opacity: 0.5;
}
.process-area .col-lg-3:last-child .process-item::before { display: none; }

.cta-area {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  z-index: 1;
}
.cta-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--sf-theme-color2) 72%, transparent);
  z-index: -1;
}
.cta-content { text-align: center; }
.cta-content h2 { color: var(--sf-color-white); font-weight: 800; margin-bottom: 20px; }
.cta-content .theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  color: var(--sf-color-white);
  background: var(--sf-theme-color);
  border-radius: 50px;
  text-decoration: none;
}
.cta-content .theme-btn i { transition: transform 0.3s; }
.cta-content .theme-btn:hover i { transform: translateX(4px); }

@media (max-width: 991px) {
  .choose-img { text-align: center; margin-top: 30px; min-height: 0; }
  .choose-img .img-1 { width: 85%; }
  .choose-img .img-shape { left: 5%; top: 20px; width: 120px; }
  .process-wrap { padding-left: 20px; padding-right: 20px; }
  .process-item::before { display: none; }
}
