/************************************************************
                      BEGIN snapshot-1                      
************************************************************/
/* Wrapper */
.sn-1-wrapper {
  width: 100%;
  margin: 35px auto;
  padding: 0 20px;
}

/* Header */
.sn-1-head {
  margin-bottom: 30px;
}

.sn-1-badge {
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid currentColor;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 6px;
  padding: 8px 16px 8px 40px; /* space for SVG */
  background-color: #efefff;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 24px 24px;
  display: inline-block;
  margin-bottom: 10px;
}

.sn-1-badge-icon {
  width: 25px;
  height: 20px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.sn-1-title {
  font-size: 28px;
  margin: 12px 0 0 0;
  text-align: left;
  font-weight: 700;
}

.sn-1-description {
  font-size: 18px;
  color: #141a21;
  line-height: 150%;
  margin: 12px 0 0 0;
  width: 50%;
}

/* Card */
.sn-1-card {
  display: flex;
  background-color: #f2f2f9;
  padding: 40px;
  border-radius: 12px;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.sn-1-card-left {
  display: flex;
  flex-direction: column;
  flex: 0 0 60%;
  width: 56%;
  gap: 16px;
}

.sn-1-list-item {
  display: flex;
  align-items: flex-start;
}

.sn-1-text-wrapper {
  display: flex;
  gap: 16px;
}

.sn-1-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.sn-1-item-text {
  font-size: 18px;
  color: #2f2f2f;
  line-height: 150%;
  margin: 0;
}

/* Right Side */
.sn-1-card-right {
  flex: 1;
  max-width: 350px;
  background-color: #9798a8;
  border-radius: 8px;
  display: flex;
  align-self: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .sn-1-card {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .sn-1-card-left {
    width: 100%;
    padding-top: 20px;
  }

  .sn-1-title {
    font-size: 24px;
  }

  .sn-1-description {
    font-size: 15px;
    width: 100%;
  }

  .sn-1-item-text {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .sn-1-title {
    font-size: 22px;
    text-align: start;
  }

  .sn-1-description {
    font-size: 16px;
    text-align: start;
  }

  .sn-1-item-text {
    font-size: 14px;
  }

  .sn-1-card {
    gap: 1rem;
    padding: 30px 20px;
  }

  .sn-1-card-left {
    padding-top: 10px;
  }
}

/************************************************************
                       END snapshot-1                       
************************************************************/

/************************************************************
                 BEGIN feature-highlight-2                  
************************************************************/
.fh-2-container {
  margin: 35px auto;
  width: 100%;
  padding: 0 35px;
  max-width: 1400px;
}

.fh2-head {
  width: 100%;
  padding: 0 20px;
  margin: 35px auto 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fh2-badge {
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid currentColor;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 6px;
  padding: 8px 16px 8px 40px; /* space for SVG */
  background-color: #efefff;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 24px 24px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Title + description */
.fh2-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.fh2-desc {
  font-size: 16px;
  line-height: 1.5;
  margin: 12px auto 0;
}

.fh-2-content {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fh-2-features {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fh-2-feature-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fh-2-feature-item {
  flex: 1;
  padding: 15px;
  border-left: 6px solid;
  border-radius: 6px;
  box-sizing: border-box;
}

.fh-2-feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 40px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 33px 53px;
}

.fh-2-feature-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.fh-2-feature-text {
  margin: 0;
}

.fh-2-image-wrapper {
  flex: 1;
  align-self: center;
}

.fh-2-image {
  max-width: 350px;
  border-radius: 30px;
  background-color: #dfe9ed;
}

@media (max-width: 768px) {
  .fh-2-feature-row {
    flex-direction: column;
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .fh-2-content {
    flex-direction: column-reverse;
  }

  .fh-2-title {
    font-size: 28px;
    text-align: start;
  }

  .fh-2-description {
    text-align: start;
  }

  .fh-2-feature-title {
    padding-left: 36px !important;
    background-size: 24px 24px !important;
  }
}

/************************************************************
                  END feature-highlight-2                   
************************************************************/

/************************************************************
                 BEGIN feature-highlight-1                  
************************************************************/
/* Base container */
.fh1-container {
  margin: 35px auto;
  position: relative;
  font-family: "Satoshi", sans-serif;
  color: var(--color-gray-700);
}

/* Head section */
.fh1-head {
  width: 100%;
  padding: 0 20px;
  margin: 35px auto 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fh1-badge {
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid currentColor;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 6px;
  padding: 8px 16px 8px 40px; /* space for SVG */
  background-color: #efefff;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 24px 24px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Title + description */
.fh1-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.fh1-desc {
  font-size: 16px;
  line-height: 1.5;
  margin: 12px auto 0;
}

/* Content layout */
.fh1-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}

.fh1-child {
  flex: 1;
  align-self: center;
}

.fh1-features {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 25px;
}

/* Feature box */
.fh1-feature {
  border-left: 6px solid var(--border-color); /* default green */
  padding: 10px 0 10px 10px;
  border-radius: 0px;
  background-color: var(--feature-bg, #ffffff);
}

.fh1-feature h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  padding-left: 40px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px 24px;
}

.fh1-feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fh1-feature li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.fh1-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background-color: #333;
  border-radius: 50%;
}

/* Image box */
.fh1-image {
  max-width: 500px;
  margin: 0 auto;
  background: #dfe9ed;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .fh1-content {
    flex-direction: column;
  }
  .fh1-head {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 990px) {
  .fh1-title {
    font-size: 28px;
    text-align: start;
  }
  .fh1-head {
    align-items: flex-start;
    text-align: start;
  }
  .fh1-content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

/************************************************************
                  END feature-highlight-1                   
************************************************************/

/************************************************************
                 BEGIN feature-highlight-3                  
************************************************************/
.fh2-container {
  margin: 35px auto;
  padding: 0 20px;
  font-family: "Satoshi", sans-serif;
  color: #333;
}

.fh2-head {
  text-align: center;
  margin-bottom: 30px;
}

.fh2-badge {
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid currentColor;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 6px;
  padding: 8px 16px 8px 40px; /* space for SVG */
  background-color: #efefff;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 24px 24px;
  display: inline-block;
  margin-bottom: 10px;
}

.fh2-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
}

.fh2-description {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto;
  width: 100%;
}

.fh2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fh2-feature-box {
  border-left: 6px solid transparent;
  border-radius: 6px;
}

.fh2-feature-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  padding-left: 50px; /* space for svg */
  background-repeat: no-repeat;
  background-position: left center;
  height: 45px;
  background-size: 45px 45px;
}

.fh2-feature-text {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .fh2-grid {
    grid-template-columns: 1fr;
  }
  .fh2-title {
    font-size: 24px;
  }
}

/************************************************************
                  END feature-highlight-3                   
************************************************************/

/************************************************************
                  BEGIN personalization-6                   
************************************************************/
@media (max-width: 1400px) {
  .personalize-container-6 {
    /* max-width: 1000px; */
  }
}

@media (min-width: 1401px) {
  .personalize-container-6 {
    max-width: 1400px;
  }
}

.personalize-container-6 {
  /* max-width: 1000px; */
  margin: 35px auto;
  display: flex;
  flex-direction: row;
  gap: 50px;
  padding: 0px 35px;
}

.personalize-parent-head-6 {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 100%;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex: 1;
}

#personalize-head-6 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-bottom: 20px;
  padding-top: 30px;
  gap: 12px;
}

.personalize-empty-6 {
  width: 100%;
  /* height: 90vh; */
  background-color: #dfe9ed;
  border-radius: 20px;
}

.personalize-badge-6 {
  font-weight: 700;
  color: #006466;
  font-size: 14px;
  border-top: 1px solid #006466;
  border-right: 4px solid #006466;
  border-bottom: 4px solid #006466;
  border-left: 1px solid #006466;
  display: inline-block;
  border-radius: 6px;
  padding: 8px 16px;
  background-color: #e6fffa !important;
}

#personalize-z-6 {
  background: url("./icons/brifecase-tick-green.svg") no-repeat 0.625rem center;
  background-size: 1.5rem 1.5rem;
  padding-left: 2.5rem;
}

.personalize-main-title-6 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  vertical-align: middle;
  color: #141a21;
  margin: 0px;
}

.personalize-description-6 {
  font-family: Satoshi;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  text-align: start;
  vertical-align: middle;
  color: #141a21;
  margin: 0px;
}

.personalize-cards-grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
}

.personalize-card-6 {
  border-radius: 10px;
  border-width: 1px;
  padding: 30px 20px;
  gap: 20px;
  background: #f1f1f1;
  border: 1px solid #505050;
}

.personalize-card-6 .personalize-card-title-6 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #141a21;
  margin-top: 12px;
  margin-bottom: 0px;
}

.personalize-card-6 .personalize-card-text-6 {
  font-family: Satoshi;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2c3947;
  margin-top: 12px;
}

@media (max-width: 990px) {
  .personalize-container-6 {
    padding: 16px;
    flex-direction: column;
    gap: 24px;
  }

  .personalize-parent-head-6 {
    flex-direction: column;
    gap: 12px;
  }

  .personalize-empty-6 {
    max-width: 350px;
    align-self: center;
  }

  #personalize-head-6 {
    align-items: start;
  }

  .personalize-main-title-6 {
    font-size: 28px;
  }

  .personalize-description-6 {
    text-align: start;
    font-size: 16px;
  }

  .personalize-cards-grid-6 {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .personalize-card-6 {
    background: #efefff;
  }
}

/************************************************************
                   END personalization-6                    
************************************************************/

/************************************************************
                  BEGIN personalization-1                   
************************************************************/
/* Personalization Component Styles */
.pr-1-container {
  width: 100%;
  margin: 35px auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 20px;
}

/* Header Section */
.pr-1-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Badge Styles */
.pr-1-badge {
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid currentColor;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 6px;
  padding: 8px 16px 8px 40px; /* space for SVG */
  background-color: #efefff;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 24px 24px;
  display: inline-block;
  margin-bottom: 10px;
}

.pr-1-badge-with-icon {
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 24px 24px;
  padding-left: 40px;
}

/* Title and Description */
.pr-1-main-title {
  font-family: Satoshi, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  text-align: center;
  vertical-align: middle;
  color: #141a21;
  margin: 0;
}

.pr-1-description {
  font-family: Satoshi, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  vertical-align: middle;
  color: #141a21;
  margin-top: 4px;
  margin-bottom: 0;
}

/* Row Layouts */
.pr-1-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 20px;
  opacity: 1;
  gap: 32px;
}

.pr-1-reverse {
  flex-direction: row-reverse;
}

/* Text Block */
.pr-1-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  gap: 0;
  flex: 1;
}

/* Label Styles with Color Variants */
.pr-1-label {
  font-family: Satoshi, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-align: start;
  margin: 0;
}

/* Subtitle */
.pr-1-subtitle {
  font-family: Satoshi, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  margin-top: 4px;
  margin-bottom: 0;
  color: #141a21;
}

/* Paragraph */
.pr-1-paragraph {
  font-family: Satoshi, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  margin-top: 12px;
  margin-bottom: 0;
  color: #141a21;
}

/* Bullets */
.pr-1-bullets {
  margin: 12px 0 0 0;
  padding-left: 20px;
  list-style-type: disc;
}

.pr-1-bullets:last-child {
  margin-bottom: 0;
}

.pr-1-bullets li {
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  color: #141a21;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 8px;
}

.pr-1-bullets li:last-child {
  margin-bottom: 0;
}

.pr-1-bullets li strong {
  font-weight: 700;
  color: #141a21;
}

/* Image Block */
.pr-1-image-block {
  flex: 0 0 300px;
  background: #e0edf3;
  border-radius: 16px;
  overflow: hidden;
}

.pr-1-image {
  width: 100%;
  border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 990px) {
  .pr-1-head {
    align-items: flex-start;
    padding: 0;
  }

  .pr-1-main-title {
    font-size: 28px;
  }

  .pr-1-description {
    font-size: 16px;
  }

  .pr-1-row {
    flex-direction: column-reverse;
    padding: 0 0 40px 0;
    gap: 20px;
  }

  /* Override reverse direction on mobile - all rows stack the same way */
  .pr-1-reverse {
    flex-direction: column-reverse;
  }

  .pr-1-image-block {
    width: 100%;
    flex: none;
    max-width: 420px;
  }

  .pr-1-subtitle {
    font-size: 24px;
  }

  .pr-1-paragraph {
    font-size: 16px;
  }

  .pr-1-bullets {
    padding-left: 16px;
  }

  .pr-1-bullets li {
    font-size: 16px;
  }
}

/************************************************************
                   END personalization-1                    
************************************************************/

/************************************************************
                  BEGIN personalization-5                   
************************************************************/
/* ==============================
   Container & Layout
   ============================== */
.pr-5-container {
  width: 100%;
  margin: 35px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}

.pr-5-header {
  display: flex;
  width: 100%;
  gap: 12px;
  margin-bottom: 20px;
}

.pr-5-head-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 20px;
}

.pr-5-head-image {
  width: 100%;
  max-width: 346px;
  align-self: center;
  background-color: #dfe9ed;
  border-radius: 20px;
}

/* ==============================
   Badge
   ============================== */
.pr-5-badge {
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid currentColor;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 6px;
  padding: 8px 16px 8px 40px; /* space for SVG */
  background-color: #efefff;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 24px 24px;
  display: inline-block;
  margin-bottom: 10px;
}

.pr-5-badge-icon {
  width: 25px;
  height: 20px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

/* ==============================
   Typography
   ============================== */
.pr-5-main-title {
  font-family: Satoshi, Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  color: #141a21;
  margin: 0;
}

.pr-5-description {
  font-family: Satoshi, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #141a21;
  margin: 0;
}

/* ==============================
   Cards Grid
   ============================== */
.pr-5-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-template-rows: repeat(2, 1fr);
}

.pr-5-card {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 30px 20px;
  background: #e0e0f0;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.pr-5-card-with-icon {
  background-repeat: no-repeat;
  background-position: 20px 20px;
  background-size: 40px 40px;
}

.pr-5-card-title {
  font-family: Satoshi, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #141a21;
  margin: 40px 0 12px;
}

.pr-5-card-text {
  font-family: Satoshi, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2c3947;
  margin: 0;
}

/* ==============================
   Responsive Styles
   ============================== */
@media (max-width: 990px) {
  .pr-5-header {
    flex-direction: column;
    gap: 12px;
  }

  .pr-5-main-title {
    font-size: 28px;
  }

  .pr-5-description {
    font-size: 16px;
  }

  .pr-5-cards-grid {
    grid-template-columns: 1fr; /* 1 column */
    grid-template-rows: repeat(6, 1fr); /* 6 equal-height rows */
    gap: 24px;
  }
}
/* ==============================
   End of File
   ============================== */

/************************************************************
                   END personalization-5                    
************************************************************/

/************************************************************
                     BEGIN step-guide-3                     
************************************************************/
:root {
  --sg-3-text-color: #494949;
  --sg-3-heading-color: #000;
  --sg-3-divider-color: #e0e0e0;
  --sg-3-placeholder-bg: #dfe9ed;
}

.sg-3-container {
  width: 100%;
  padding: 0 20px;
  border-radius: 12px;
  margin: 35px auto;
  display: flex;
  flex-direction: column;
}

.sg-3-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sg-3-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 2px solid;
}

.sg-3-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.sg-3-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sg-3-heading-color);
  margin: 0.5rem 0;
}

.sg-3-subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 3rem;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sg-3-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

.sg-3-steps::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--sg-3-divider-color);
  transform: translateX(-50%);
  z-index: 0;
}

.sg-3-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Odd steps = Text Left | Image Right */
.sg-3-odd {
  flex-direction: row;
}

/* Even steps = Image Left | Text Right */
.sg-3-even {
  flex-direction: row-reverse;
}

.sg-3-step-text,
.sg-3-step-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sg-3-step-text {
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.sg-3-even .sg-3-step-text {
  align-items: flex-start;
  text-align: left;
}

.sg-3-even .sg-3-step-image {
  justify-content: flex-end;
}

.sg-3-step-number {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sg-3-step-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.sg-3-step-content {
  font-size: 14px;
  line-height: 1.5;
  color: var(--sg-3-text-color);
}

.sg-3-step-image img {
  max-width: 175px;
  border-radius: 24px;
  background: var(--sg-3-placeholder-bg);
}

@media (max-width: 768px) {
  .sg-3-header {
    text-align: left;
    margin-bottom: 1rem;
  }

  .sg-3-title {
    font-size: 1.75rem;
  }

  .sg-3-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  .sg-3-step {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 20px;
  }

  .sg-3-step-text {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .sg-3-step-number {
    font-size: 1rem;
  }

  .sg-3-steps::after {
    left: 0%;
  }
}

/************************************************************
                      END step-guide-3                      
************************************************************/

/************************************************************
                     BEGIN step-guide-2                     
************************************************************/
:root {
  --sg-2-step1: #5144d5;
  --sg-2-step2: #19c985;
  --sg-2-step3: #e2cd33;
  --sg-2-step4: #79a316;
  --sg-2-heading: #000;
  --sg-2-text: #494949;
  --sg-2-light-bg: #f8f9fa;
}

.sg-2-container {
  width: 100%;
  margin: 35px auto;
  border-radius: 12px;
  padding: 0 20px;
}

.sg-2-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.sg-2-badge {
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid currentColor;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 6px;
  padding: 8px 16px 8px 40px; /* space for SVG */
  background-color: #efefff;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 24px 24px;
  display: inline-block;
  margin-bottom: 10px;
}

.sg-2-badge-text {
  font-size: 14px;
  font-weight: 700;
  padding-left: 28px;
}

.sg-2-title {
  font-size: 36px;
  font-weight: 700;
  margin: 12px 0 5px;
  color: var(--sg-2-heading);
}

.sg-2-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
  color: var(--sg-2-text);
}

.sg-2-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.sg-2-step {
  border-radius: 8px;
}

.sg-2-step-number {
  width: 50px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.sg-2-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--sg-2-heading);
}

.sg-2-step-text {
  font-size: 14px;
  line-height: 150%;
  color: #2c3947;
  margin: 0;
}

/* Step-specific colors */
.sg-2-step-number-1 {
  background-color: var(--sg-2-step1);
}
.sg-2-step-number-2 {
  background-color: var(--sg-2-step2);
}
.sg-2-step-number-3 {
  background-color: var(--sg-2-step3);
}
.sg-2-step-number-4 {
  background-color: var(--sg-2-step4);
}

@media (max-width: 991px) {
  .sg-2-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .sg-2-header {
    align-items: flex-start;
    text-align: left;
  }

  .sg-2-steps {
    grid-template-columns: 1fr;
  }

  .sg-2-title {
    font-size: 1.75rem;
  }
  .sg-2-subtitle {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}

/************************************************************
                      END step-guide-2                      
************************************************************/

/************************************************************
                     BEGIN step-guide-1                     
************************************************************/
:root {
  --purple: #8646e1;
  --blue: #23a9f2;
  --green: #25c989;
  --yellow: #eccb21;
  --red: #e14646;
  --text-color: #494949;
  --heading-color: #000;
}

.step-guide-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  /* height: 100%; */
  padding: 0px 35px;
  /* background-color: #fff; */
  border-radius: 12px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
}

@media (min-width: 1401px) {
  .step-guide-container {
    max-width: 1400px;
    margin: 35px auto;
  }
}

@media (max-width: 1400px) {
  .step-guide-container {
    /* max-width: 1000px; */
    margin: 35px auto;
    padding: 0px 35px;
  }
}

.step-guide-1-title {
  font-weight: 700;
  color: var(--color-gray-700);
  font-size: 36px;
  /* width: 60%; */
  text-align: center;
}

@media (max-width: 601px) {
  .step-guide-1-title {
    font-weight: 700;
    font-size: 28px;
    width: 100%;
    text-align: start;
  }
}

.step-guide-header {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  background-color: #f7f1fc;
  color: #79509f;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #79509f;
}

.logo-box svg {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.logo-text {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #2c3947;
  margin-bottom: 3rem;
  text-align: center;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.step {
  flex: 1;
  min-width: 200px;
  position: relative;
  padding-left: 2.5rem;
}

.step-para {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.step-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.step-content {
  font-size: 1rem;
  line-height: 1.5;
}

/* Vertical colored bars */
.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 2px;
}

/* Specific colors for each step */
.step:nth-child(1)::before {
  background-color: var(--purple);
}

.step:nth-child(2)::before {
  background-color: rgb(38, 130, 98);
}

.step:nth-child(3)::before {
  background-color: rgb(126, 126, 35);
}

.step:nth-child(4)::before {
  background-color: var(--red);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  /* body {
                padding: 1rem;
            } */

  .step-guide-container {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.75rem;
    text-align: left;
  }

  .subtitle {
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 2rem;
  }

  .step-guide-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .steps-container {
    flex-direction: column;
    gap: 0rem;
  }

  .step {
    padding-left: 1.5rem;
  }

  .step::before {
    left: 0;
  }

  .step-heading {
    font-size: 1rem;
  }

  .step-content {
    font-size: 0.875rem;
  }
}

/************************************************************
                      END step-guide-1                      
************************************************************/

/************************************************************
                    BEGIN kpi-metrics-1                     
************************************************************/
.kpi-1-container {
  width: 100%;
  margin: 35px auto;
  background: white;
  padding: 0 20px;
  position: relative;
  gap: 12px;
  flex-direction: column;
  display: flex;
}

.kpi-1-badge {
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid currentColor;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 6px;
  padding: 8px 16px 8px 40px; /* space for SVG */
  background-color: #efefff;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 24px 24px;
  display: inline-block;
  margin-bottom: 10px;
}

.kpi-1-badge-icon {
  width: 25px;
  height: 20px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.kpi-1-title {
  color: #141a21;
  font-family: Satoshi;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  text-align: start;
}

.kpi-1-description {
  color: #2c3947;
  font-family: Satoshi;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}

.kpi-1-header {
  display: flex;
}

.kpi-1-content {
  padding-right: 50px;
  gap: 12px;
}

.kpi-1-image-wrapper {
  flex: 0 0 25%;
  max-width: 350px;
}

.kpi-1-image-placeholder {
  background-color: #f1f1f1;
  border-radius: 10px;
}

.kpi-1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.kpi-1-card {
  background: transparent;
  border-left: 5px solid;
  padding: 4px 24px;
  position: relative;
  min-height: 45px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kpi-1-card.purple {
  border-left-color: #5657e4;
}
.kpi-1-card.teal {
  border-left-color: #00a690;
}
.kpi-1-card.yellow {
  border-left-color: #a6ad3d;
}
.kpi-1-card.blue {
  border-left-color: #22c2d4;
}
.kpi-1-card.gray {
  border-left-color: #aa70e0;
}
.kpi-1-card.orange {
  border-left-color: #ea521c;
}

.kpi-1-number {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: #141a21;
}

.kpi-1-label {
  color: #2c3947;
  font-family: Satoshi;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}

.kpi-1-background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 990px) {
  .kpi-1-header {
    flex-direction: column;
  }

  .kpi-1-title {
    font-size: 28px;
  }

  .kpi-1-description {
    font-size: 16px;
  }

  .kpi-1-grid {
    margin-top: 12px;
    flex-direction: column;
    display: flex;
    gap: 0px;
  }

  .kpi-1-card {
    padding: 30px 24px;
  }

  .kpi-1-image-wrapper {
    align-self: center;
  }
}

/************************************************************
                     END kpi-metrics-1                      
************************************************************/

/************************************************************
                    BEGIN kpi-metrics-2                     
************************************************************/
@media (min-width: 1401px) {
  .stat2_container {
    max-width: 1400px;
  }
}

@media (max-width: 1400px) {
  .stat2_container {
    /* max-width: 1000px; */
  }
}

.stat2_container {
  width: 100%;
  background: white;
  padding: 40px 0px;
  position: relative;
  margin: 0 auto;
}

.content2 {
  /* padding: 40px 35px; */
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge2 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #d4f4dd;
  border: 4px solid #19895a;
  padding: 6px 12px;
  border-radius: 6px;
  gap: 4px;
  border-top-width: 1px;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 1px;
  font-family: Satoshi;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #19895a;
  display: inline-flex;
  width: auto;
  max-width: max-content;
}

.badge-icon2 {
  width: 20px;
  height: 16.98px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.title2 {
  color: #141a21;
  font-family: Satoshi;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
}

.description2 {
  color: #2c3947;
  font-family: Satoshi;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  max-width: 680px;
  display: flex;
  margin-top: 0px;
  text-align: center;
}

.stats-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 20px;
  background: #d3d3d3;
  width: 100%;
}

.stat-card2 {
  text-align: left;
  padding: 20px 30px;
  background: white;
  display: flex;
  flex-direction: column;
}

.stat-number2 {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  color: #141a21;
}

.stat-label2 {
  font-family: Satoshi;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #2c3947;
}

@media (max-width: 990px) {
  .content2 {
    padding: 20px;
    align-items: start;
  }

  .stat2_container {
    padding: 0px;
  }

  .title2 {
    font-size: 28px;
    text-align: start;
  }

  .description2 {
    font-size: 16px;
    text-align: start;
  }

  .stats-cards2 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .side-rectangle2 {
    width: 100%;
    height: 180px;
  }

  .stats-grid2 {
    flex-direction: column;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: transparent;
    gap: 20px;
    margin-top: 0px;
  }

  .stat-card2 {
    width: -webkit-fill-available;
    padding: 30px 20px;
    border-bottom: 1px solid #d3d3d3;
  }
}

/************************************************************
                     END kpi-metrics-2                      
************************************************************/

/************************************************************
                        BEGIN faq-2                         
************************************************************/
/* Container */
.faq-2-container {
  width: 90%;
  margin: 35px auto;
  gap: 1rem;
  padding: 0 20px;
}

.faq-2-title {
  text-align: center;
  font-size: 2.25rem; /* ~36px */
  font-weight: 700;
  line-height: 150%;
  color: #141a21;
  margin-bottom: 2rem;
}

.faq-2-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Item */
.faq-2-item {
  border: none;
  border-radius: 0.75rem; /* ~12px */
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  transition: all 0.3s ease;
}

.faq-2-item.active {
  border: 1px solid #265baa;
  background-color: #ececf7;
  height: 100%;
}

/* Question */
.faq-2-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  text-align: left;
  color: #333;
  gap: 1rem;
}

.faq-2-question h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
  color: #2f2f2f;
  flex: 1;
}

.faq-2-item.active h3 {
  font-weight: 700;
}

/* Answer */
.faq-2-answer {
  padding: 0 1.25rem 1rem;
  display: none;
  height: 100%;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #3e3e3e;
}

.faq-2-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 150%;
  font-weight: 400;
  margin: 0 0 0.75rem 0;
}

.faq-2-answer p:last-child {
  margin-bottom: 0;
}

.faq-2-item.active .faq-2-answer {
  display: block;
}

/* Bullets */
.faq-2-bullets {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.faq-2-bullets:first-child {
  margin-top: 0;
}

.faq-2-bullets:last-child {
  margin-bottom: 0;
}

.faq-2-bullets li {
  font-size: 1rem;
  color: #555;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.faq-2-bullets li:last-child {
  margin-bottom: 0;
}

/* Arrow */
.faq-2-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #265baa;
  border-right: 2px solid #265baa;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.faq-2-item.active .faq-2-arrow {
  transform: rotate(137deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-2-question {
    font-size: 0.875rem;
    padding: 0.875rem 1rem;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .faq-2-question h3 {
    font-size: 18px;
  }

  .faq-2-answer {
    padding: 0 1rem 0.875rem;
  }

  .faq-2-answer p {
    font-size: 0.8125rem;
  }

  .faq-2-bullets {
    padding-left: 1rem;
  }

  .faq-2-bullets li {
    font-size: 0.8125rem;
  }

  .faq-2-title {
    text-align: start;
  }

  .faq-2-arrow {
    width: 10px;
    height: 10px;
    margin-top: 0.25rem;
    align-self: center;
  }
}

/************************************************************
                         END faq-2                          
************************************************************/
