/* ===== PERFORMANCE PAGE STYLES ===== */

/* Main Container */
.performance-page {
 box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 132px;
}

/* ===== HERO SECTION ===== */


.hero-text-highlight {
  font-weight: 600;
}

.hero-image {
  width: 100%;
  max-width: 980px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 980/298;
  flex-shrink: 0;
  border-radius: 8px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 8px;
  padding: 60px 60px 0px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}
.feature-pair {
  display: flex;
  flex-direction: column;
  gap: 132px;
}

.feature-second{
  display: flex;
  flex-direction: row;
  padding:0 60px;
  gap:80px;
  align-items: center;
}

/* ===== FEATURE COMPONENT ===== */
.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}

.feature:first-child {
  gap: 0;
}

.feature-split {
  flex-direction: row;
  align-items: flex-start;

}

.feature-reverse {
  flex-direction: row-reverse;
}

.feature-with-accordion {
  flex-direction: row;
  align-items: flex-end;
  gap: 52px;
}

.feature-column {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  min-width: 400px;
}

.feature-content-centered {
  align-items: center;
}

.feature-label {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  border: 1px solid #4000a9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.feature-label-text {
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.feature-title {
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
  margin: 0;
}

.feature-title-main {
  color: #290074;
}

.feature-title-highlight {
  color: #4000a9;
}

.feature-title-secondary {
  color: #342e77;
}

.feature-text {
  color: #616160;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  margin: 0;
}

.feature-text-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.feature-image-container {
  width: 100%;
  max-width: 529px;
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.pt-150 {
  padding-top:150px
}
.pt-100{
  padding-top:100px
}

.feature-image {
  border-radius: 8px;
  border: 8px solid #ffffff;
  width: 100%;
  max-width: 515px;
  height: auto;
  object-fit: cover;
  box-shadow: 20px 20px 30px 0px rgba(0, 0, 0, 0.06);
  display: block;
  align-self: center;
}
.featured-image {
  border-radius: 8px;

  width: 100%;
  max-width: 515px;
  height: auto;
  object-fit: cover;
  display: block;
  align-self: center;
}

.feature-accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

/* ===== BEHAVIOR CARDS SECTION ===== */
.behavior-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.behavior-card {
  background: #ffffff;
  border-radius: 17px;
  border: 1px solid #b1b1af;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.behavior-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
}

.behavior-card-image {
  border-radius: 8px;
  border: 1px solid #b1b1af;
  padding: 1px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.behavior-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.behavior-card-icon {
  width: 35px;
  height: 54px;
  position: absolute;
  left: 140.5px;
  top: 65px;
  object-fit: cover;
  aspect-ratio: 35/54;
}

.behavior-card-content {
  background: #ffffff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.behavior-card-title {
  color: #212121;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.02em;
  margin: 0;
  width: 100%;
}

.behavior-card-text {
  color: #616160;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.02em;
  margin: 0;
  width: 100%;
}

/* ===== FEATURE LIST ===== */
.feature-list {
  list-style-type: disc;
  padding-left: 1em;
  margin: 20px 0 0 0;
  color: #616160;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 20px;
  
}

.feature-list li {
  margin: 0;
  color: #616160;
}

.accordion-content{
  display:none !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-section {
    padding: 60px 50px;
  }

  .features-section {
    padding: 60px 50px;
  }

  .feature-split,
  .feature-reverse {
    flex-direction: column;
    gap: 40px;
    
  }

  .behavior-cards {
    gap: 20px;
  }

  .behavior-card {
    min-width: 280px;
  }
  .feature, .feature-content {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .performance-page{
    align-items: center;
    text-align: center;
  
  }
  .hero-section {
    padding: 40px 20px;
  }
   .performance-page{
    gap:80px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-image {
    width: 100%;
   
    height: auto;
  }

  .features-section {
    padding: 40px 20px 0px;
    flex-direction: column;
  }

  .feature-second, .feature-with-accordion, .feature-split{  
   padding: 0px 20px;
    flex-direction: column-reverse;
  }
   .feature-with-accordion{  
   padding: 0px 20px;
    flex-direction: column;
  }

  .pt-100, .pt-150 {
    padding-top:0px;
  }

  

  .feature-content {
    min-width: auto;
  }

  .feature-accordion {
    min-width: auto;
    max-width: none;
    width: 100%;
  }

  .feature-image-container {
    max-width: none;
    width: 100%;
  }

  .feature-image {
    max-width: none;
    width: 100%;
  }

  .behavior-cards {
    flex-direction: column;
    gap: 20px;
  }

  .behavior-card {
    min-width: auto;
    max-width: none;
    width: 100%;
  }

  .behavior-card-icon {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .performance-page{
    gap:80px;
    align-items: center;
    
  }
  .feature-pair{
    gap:80px;
  }
  .hero-section {
    padding: 30px 15px;
  }

  .features-section {
    padding: 30px 15px;
    gap:40px;
   
  }
  .feature-text{
    font-size: 14px !important;
  }
  .feature-second{
    gap:40px;
  }

  .feature {
    padding: 0px 15px;
     text-align: center;
  
  }
  .feature-content{
    align-items: center;
  }

  .behavior-card-content {
    padding: 20px;
  }
  .feature-accordion{
   text-align: left;
  }
}
@media (max-width: 576px) {
    h2 {
        font-size: 26px !important;
        line-height: 110%;
    }
    .feature-list, .behavior-card-text{
      font-size: 14px !important;
    }
    .feature-list {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 15px;
    }
    .feature-content{
      gap:20px;
    }
    .feature-split{
      gap:20px;
    }
    .accordion-item-title{
      font-size:20px;
    }
}
.accordion-content p{
  color:#494948 !important
}

.quiz-placeholder img{
  width:100%;
}