@charset "UTF-8";

.tpl-scope-single {
  background: #FFFFFF;
  position: relative;
  --tpl-orange: #FF8800;
  --tpl-dark: #111827;
  --tpl-gray: #5A6270;
  --tpl-line: #EDEBE6;
}

.tpl-scope-single .tpl-single {
  position: relative;
  overflow: hidden;
  padding: 60px 0 100px;
}

.tpl-scope-single .tpl-single::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,136,0,0.10) 0%, rgba(255,136,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.tpl-scope-single .tpl-single::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,24,39,0.05) 0%, rgba(17,24,39,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.tpl-scope-single .tpl-single__editor {
  position: relative;
  z-index: 1;
}

.tpl-scope-single .editor-content > .row.default-row {
  align-items: center;
  margin-bottom: 72px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.tpl-scope-single .editor-content > .row.default-row.tpl-reveal-in {
  opacity: 1;
  transform: translateY(0);
}

.tpl-scope-single .editor-content > .row.default-row:last-child {
  margin-bottom: 0;
}

.tpl-scope-single .tpl-about-reverse {
  flex-direction: row-reverse;
}

.tpl-scope-single h2.tpl-about-heading {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  color: var(--tpl-dark);
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.6;
}

.tpl-scope-single h2.tpl-about-heading::after {
  content: "";
  width: 44px;
  height: 4px;
  background: var(--tpl-orange);
  border-radius: 2px;
}

.tpl-scope-single h2.tpl-about-heading span {
  font-size: 16px;
  font-weight: 500;
  color: var(--tpl-orange);
}

.tpl-scope-single .tpl-about-heading-center {
  align-items: center;
  text-align: center;
}

.tpl-scope-single .tpl-about-heading-center::before {
  margin: 0 auto;
}

.tpl-scope-single h3.tpl-about-subheading {
  font-size: 21px;
  font-weight: 700;
  color: var(--tpl-dark);
  margin: 20px 0 20px;
  padding-left: 14px;
  border-left: 3px solid var(--tpl-orange);
}

.tpl-scope-single .editor-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--tpl-gray);
  margin: 0 0 16px;
}

.tpl-scope-single .editor-content strong {
  color: var(--tpl-dark);
  font-weight: 700;
}

.tpl-scope-single .tpl-about-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.tpl-scope-single .tpl-about-taglist li {
  font-size: 15px;
  font-weight: 600;
  color: var(--tpl-gray);
  background: #FAFAF9;
  border: 1px solid var(--tpl-line);
  border-radius: 20px;
  padding: 7px 18px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.tpl-scope-single .tpl-about-taglist li:hover {
  border-color: var(--tpl-orange);
  color: var(--tpl-orange);
}

.tpl-scope-single .tpl-about-img-frame {
  position: relative;
  padding: 18px 18px 18px 20px;
}

.tpl-scope-single .tpl-about-img-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 62%;
  border: 4px solid var(--tpl-orange);
  z-index: 0;
}

.tpl-scope-single .tpl-about-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px rgba(17,24,39,0.12);
}

.tpl-scope-single .tpl-about-reverse .tpl-about-img-frame {
  padding: 18px 20px 18px 18px;
}

.tpl-scope-single .tpl-about-reverse .tpl-about-img-frame::before {
  left: auto;
  right: 0;
  border-left: none;
  border-right: 4px solid var(--tpl-orange);
}

.tpl-scope-single .editor-content img {
  max-width: 100%;
  height: auto;
}

.tpl-scope-single .tpl-about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tpl-scope-single .tpl-about-feature-card {
  text-align: center;
  padding: 36px 22px;
  background: #FAFAF9;
  border: 1px solid var(--tpl-line);
  border-top: 3px solid var(--tpl-orange);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tpl-scope-single .tpl-about-feature-card.tpl-reveal-in {
  opacity: 1;
  transform: translateY(0);
}

.tpl-scope-single .tpl-about-feature-card:hover {
  box-shadow: 0 16px 32px rgba(17,24,39,0.08);
  border-color: #D9D5CC;
}

.tpl-scope-single .tpl-about-feature-card svg {
  color: var(--tpl-orange);
  margin-bottom: 14px;
}

.tpl-scope-single .tpl-about-feature-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--tpl-dark);
  margin: 0 0 8px;
}

.tpl-scope-single .tpl-about-feature-card p {
  font-size: 18px;
  color: #8A8378;
  margin: 0;
}

@media (max-width: 991px) {
  .tpl-scope-single .tpl-about-reverse {
    flex-direction: column-reverse;
  }
  .tpl-scope-single .tpl-about-img-frame,
  .tpl-scope-single .tpl-about-reverse .tpl-about-img-frame {
    padding: 12px;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .tpl-scope-single .tpl-single {
    padding: 56px 0 64px;
  }
  .tpl-scope-single .editor-content > .row.default-row {
    margin-bottom: 48px;
  }
  .tpl-scope-single .tpl-about-feature-grid {
    grid-template-columns: 1fr;
  }
}