/* ===== INDEX PAGE STYLES ===== */
.index-page {
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 132px;
}

h1 span {
  color: #4000a9;
}

h2 span {
  color: #4000a9;
}

.l {
  position: absolute;
  left: 30px;
  top: 120px;
  overflow: visible;
  aspect-ratio: 1;
}
.r {
  position: absolute;
  right: 30px;
  bottom: 30px;
  overflow: visible;
  aspect-ratio: 1;
}

/* ===== TITLE SECTION ===== */
.title-section {
  text-align: center;
}

.title-text {
  color: #8b5cf6;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

/* ===== HERO SECTION ===== */

.hero-text {
  font-family: "Albert Sans", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #666;
  margin: 0;
  max-width: 600px;
}

.hero-text span {
  font-style: italic;
}
/* ===== HERO BUTTONS ===== */
.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  text-align: center;
  padding: 0px 20px;
}

.trust-text {
  color: #888;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 40px 0;
  letter-spacing: 0.3px;
}

/* ===== CLIENT LOGOS CAROUSEL ===== */
.client-logos-container {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
}

.client-logos-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(234, 234, 232, 1),
    rgba(234, 234, 232, 0)
  );
  z-index: 2;
}

.client-logos-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(234, 234, 232, 1),
    rgba(234, 234, 232, 0)
  );
  z-index: 2;
}

.client-logos-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logos-track img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.client-logos-track img:hover {
  opacity: 1;
}

/* ===== CAPABILITIES SECTION ===== */
.capabilities-section {
  display: flex;
  flex-direction: column;
  gap: 132px;
}

.capabilities-container {
  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: column;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.capabilities-header {
  text-align: center;
}

.capabilities-label {
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
  margin: 0;
}

.capabilities-label-main {
  color: #290074;
}

.capabilities-label-highlight {
  color: #4000a9;
}

.capabilities-label-text {
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

  margin: 0 auto;
}

.capability-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #d2d2d0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.capability-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.capability-badge {
  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;
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.capability-title {
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}

.capability-description {
  color: #666;
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;

  line-height: 1.5;
  margin: 0;
}

.capability-outcome {
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.capability-outcome strong {
  font-weight: 600;
}

.capability-link {
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;

  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease;
}

.capability-link:hover {
  color: #342e77;
}

.capability-image {
  margin-top: 16px;

  overflow: hidden;
}

.capability-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.capabilities-section {
  padding: 0px 50px;
}

.capability-card {
  min-width: 280px;
  padding: 24px;
}

@media (max-width: 768px) {
  .l {
    position: absolute;
    left: -70px;
    top: 20px;
    overflow: visible;
    aspect-ratio: 1;
  }
  .r {
    position: absolute;
    right: 0px;
    bottom: -105px;
    overflow: visible;
    aspect-ratio: 1;
  }
  .client-logos-track {
    gap: 40px;
  }

  .capabilities-section {
    padding: 40px 20px 0px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .capabilities-container {
    padding: 20px 20px 0px;
    gap: 20px;
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .capabilities-header {
    margin-bottom: 20px;
  }

  .capability-card {
    min-width: auto;
    max-width: none;
    width: 100%;
    padding: 24px;
    align-items: center;
  }

  .capability-badge {
    align-self: center;
  }
}

/* Breakpoint 2 - Mobile */
@media (max-width: 576px) {
  .l {
    position: absolute;
    left: -120px;
    top: -29px;
    overflow: visible;
    aspect-ratio: 1;
  }
  .r {
    position: absolute;
    right: -100px;
    bottom: -180px;
    overflow: visible;
    aspect-ratio: 1;
  }
  .title-section {
    padding: 15px 0;
  }

  .title-text {
    font-size: 14px;
  }

  .hero-section {
    padding: 30px 15px;
  }

  .hero-text {
    font-size: 16px;
  }

  .trust-section {
    padding: 40px 15px 0px;
  }

  .trust-text {
    font-size: 14px;
  }

  .client-logos-container::before,
  .client-logos-container::after {
    width: 30px;
  }

  .client-logos-track {
    gap: 30px;
  }

  .client-logos-track img {
    height: 24px;
  }

  .capabilities-section {
    padding: 0px 15px;
    gap: 40px;
  }

  .capabilities-header {
    margin-bottom: 20px;
  }

  .capabilities-label {
    font-size: 26px !important;
    line-height: 110%;
    margin: 0 0 20px 0;
  }

  .capabilities-label-main,
  .capabilities-label-highlight {
    font-size: 26px !important;
  }

  .capability-card {
    padding: 20px;
    gap: 12px;
    align-items: center;
  }

  .capability-badge {
    align-self: center;
  }

  .capability-title {
    font-size: 16px;
  }

  .capability-description {
    font-size: 14px !important;
  }

  .capability-outcome {
    font-size: 14px !important;
  }

  .capability-link {
    font-size: 14px !important;
  }

  .capability-bottom {
    gap: 12px;
  }

  .capability-outcome {
    font-size: 11px;
  }
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #e5e5e5;

  padding: 24px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: calc(25% - 12px);
}

.stat-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: #4000a9;
}

.stat-value {
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #4000a9;
  line-height: 1;
  margin: 0;
}

.stat-label {
  font-family: "Albert Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #323232;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 20px 0px;
  }

  .stats-container {
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .stat-item {
    flex: 1;
    min-width: 0;
  }

  .stat-top {
    flex-direction: column;
    gap: 10px;
  }

  .stat-label {
    max-width: none;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .stats-container {
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .stat-item {
    flex: 1;
    min-width: 0;
  }

  .stat-value {
    font-size: 28px;
  }

  .stat-label {
    font-size: 11px;
  }
}

/* How it Works Section */
.how-it-works-section {
  padding: 0px 60px;
}

.how-it-works-container {
  margin: 0 auto;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-it-works-title {
  font-size: 48px;
  font-weight: 700;
  color: #290074;
  margin: 0 0 40px 0;
}

.how-it-works-steps {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  padding-top: 80px;
}

.how-it-works-steps {
  position: relative;
}

.dotted-line-canvas {
  position: absolute;
  top: 10px;
  left: 16px;
  right: 16px;
  height: 20px;
  z-index: 10;
  width: calc(100% - 32px);
  pointer-events: none;
}

.step-item {
  flex: 1;
  text-align: left;

  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #4000a9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #290074;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.step-description {
  line-height: 1.5;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .index-page {
    gap: 80px;
  }
  .how-it-works-section {
    padding: 0px 20px;
  }

  .how-it-works-steps {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding-top: 20px;
  }

  .step-item {
    text-align: left;
    max-width: 100%;
  }

  .dotted-line-canvas {
    display: none;
  }

  .how-it-works-title {
    font-size: 32px;
    margin-bottom: 0;
  }
  .how-it-works-header {
    margin-bottom: 0;
  }

  .step-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .how-it-works-title {
    font-size: 28px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 14px;
  }
}

/* ===== WHAT MAKES WORXOGO DIFFERENT SECTION ===== */
.different-section {
  display: flex;
  flex-direction: column;
  gap: 132px;
}

.different-container {
  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: column;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.different-title {
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
  margin: 0;
  color: #290074;
  text-align: center;
}

.different-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
}

.different-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #d2d2d0;
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  width: calc(50% - 12px);
}

.different-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.different-icon {
  flex-shrink: 0;
}

.different-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.different-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.different-card-title {
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}

.different-card-description {
  color: #666;
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;

  line-height: 1.5;
  margin: 0;
}

/* ===== CONNECT WITH CRMS SECTION ===== */
.connect-crm-section {
  padding: 0px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
}

.connect-crm-title {
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;

  color: #290074;
  text-align: center;
  width: 100%;
}

.connect-crm-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.connect-crm-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.connect-crm-button {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 60px;
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.connect-crm-button:hover {
  background: rgba(139, 92, 246, 0.2);
}

/* Testimonial Carousel Section */
.testimonial-carousel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px;
  width: 100%;
}

.testimonial-carousel-title {
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  color: #290074;
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-carousel {
  width: 100%;
  max-width: 1200px;
  position: relative;
  margin-bottom: 40px;
  padding: 0 60px;
}

.testimonial-carousel-container {
  display: flex;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.testimonial-card {
  background: #ffffff;
  border-style: solid;
  border-color: #b1b1af;
  border-width: 1px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex: 0 0 calc(50% - 15px);
  min-width: calc(50% - 15px);
  position: relative;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-card__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.testimonial-card__header {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.testimonial-card__avatar {
  background: #b1b1af;
  border-radius: 60px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.testimonial-card__image {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.testimonial-card__name {
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin: 0;
}

.testimonial-card__title {
  color: #323232;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 150%;
  margin: 0;
}

.testimonial-card__quote {
  color: #616160;
  text-align: left;
  font-family: "Albert Sans", sans-serif;
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  margin: 0;
}

.testimonial-card__logo {
  opacity: 0.4;
  flex-shrink: 0;
  width: 200px;
  height: 48px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 200/48;
}

.testimonial-card__logo-image {
  width: 40%;
  height: 61.55%;
  position: absolute;
  right: 60%;
  left: 0%;
  bottom: 19.7%;
  top: 18.75%;
  overflow: visible;
  aspect-ratio: 80/29.54;
}

.testimonial-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.testimonial-carousel-nav.prev {
  left: 10px;
}

.testimonial-carousel-nav.next {
  right: 10px;
}

.carousel-nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-nav-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #b1b1af;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  transform: scale(1.2);
  background-color: #8b5cf6;
}

.carousel-dot.active {
  background-color: #4000a9;
  transform: scale(1.2);
}

.testimonial-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #4000a9;
  color: white;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 40px;
}

.testimonial-view-all:hover {
  background-color: #2e0080;
}

@media (max-width: 768px) {
  .connect-crm-section {
    padding: 40px 0;
  }

  .connect-crm-title {
    font-size: 32px;
    padding: 0 20px;
  }

  .connect-crm-logos {
    gap: 30px;
  }

  .connect-crm-logo {
    height: 30px;
  }

  .testimonial-carousel-section {
    padding: 60px 20px;
  }

  .testimonial-carousel-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonial-carousel {
    padding: 0 50px;
  }

  .testimonial-carousel-nav.prev {
    left: 5px;
  }

  .testimonial-carousel-nav.next {
    right: 5px;
  }

  .carousel-nav-button {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    opacity: 1;
  }

  .carousel-nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .carousel-nav-button:not(:disabled):hover {
    transform: scale(1.1);
    background: rgba(64, 0, 169, 0.1);
  }

  .carousel-nav-icon {
    width: 16px;
    height: 16px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 30px;
  }

  .testimonial-card__content {
    gap: 30px;
  }

  .testimonial-card__quote {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .connect-crm-section {
    padding: 30px 0;
  }

  .connect-crm-title {
    font-size: 28px;
    padding: 0 15px;
  }

  .connect-crm-logos {
    gap: 20px;
    justify-content: center;
  }

  .connect-crm-logo {
    height: 24px;
  }

  .testimonial-carousel-section {
    padding: 0px 15px;
  }

  .testimonial-carousel {
    padding: 0 40px;
  }

  .testimonial-carousel-nav.prev {
    left: 0px;
  }

  .testimonial-carousel-nav.next {
    right: 0px;
  }

  .carousel-nav-button {
    width: 36px;
    height: 36px;
  }

  .carousel-nav-icon {
    width: 14px;
    height: 14px;
  }

  .testimonial-carousel-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 20px;
    gap: 20px;
  }

  .testimonial-card__content {
    gap: 20px;
  }

  .testimonial-card__header {
    gap: 8px;
  }

  .testimonial-card__avatar,
  .testimonial-card__image {
    width: 50px;
    height: 50px;
  }

  .testimonial-card__name,
  .testimonial-card__title {
    font-size: 14px;
  }

  .testimonial-card__quote {
    font-size: 13px;
  }

  .testimonial-card__logo {
    width: 150px;
    height: 40px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 0px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.faq-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-header {
  text-align: center;
}

.faq-title {
  font-family: "Albert Sans", sans-serif;
  font-size: 48px;
  line-height: 110%;
  font-weight: 700;
  color: #4000a9;
  margin: 0;
  letter-spacing: -0.02em;
}

.faq-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.faq-item {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  overflow: hidden;
  border-top: 1px solid rgba(229, 231, 235, 0.3);
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

.faq-item:nth-child(odd):last-child,
.faq-item:nth-child(even):nth-last-child(2) {
  border-bottom: 1px solid #e5e7eb;
}

.index-page .faq-accordion .faq-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer !important;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
  z-index: 10;
}

.faq-question {
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
  text-align: left;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;

  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: #4000a9;
  transform: rotate(180deg);
}

.faq-icon {
  width: 12px;
  height: 8px;
  fill: #6b7280;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  fill: white;
}

.index-page .faq-accordion .faq-content {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease !important;
  background: transparent !important;
  opacity: 0 !important;
}

.index-page .faq-accordion .faq-item.active .faq-content {
  max-height: 500px !important;
  padding: 0 32px 24px 32px !important;
  opacity: 1 !important;
}

.faq-answer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-answer p {
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #4b5563;
  margin: 0;
}

.faq-answer p strong {
  color: #1f2937;
  font-weight: 600;
}

/* FAQ Responsive Design */
@media (max-width: 1024px) {
  .faq-accordion {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 20px 30px;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-item-header {
    padding: 20px 24px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-item.active .faq-content {
    padding: 0 24px 20px 24px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* ===== PERFORMANCE AT SCALE SECTION ===== */
.performance-container {
  padding: 0 60px;
}

.performance-scale-section {
  background: linear-gradient(135deg, #1e0059 0%, #290074 100%);
  padding: 30px 0px;
  color: white;
}

.performance-scale-container {
  margin: 0 auto;
  text-align: center;
}

.performance-scale-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin: 0px 60px 40px 60px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 41px;
}

.performance-scale-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
}

.performance-scale-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;

  margin: 0 auto;
  padding: 0 20px;
}

.performance-stat {
  text-align: center;
  flex: 1;
  white-space: nowrap;
}

.performance-stat-value {
  font-size: 40px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin: 0 0 20px 0;
  display: block;
  white-space: nowrap;
}

.performance-stat-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}

/* Responsive styles for Different section */
.different-section {
  padding: 0px 50px;
}

.different-card {
  min-width: 280px;
  padding: 24px;
}

@media (max-width: 768px) {
  .different-section {
    padding: 0px 20px 0px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .different-container {
    padding: 60px 20px 0px;
    gap: 20px;
  }

  .different-grid {
    gap: 20px;
  }

  .different-card {
    min-width: auto;
    max-width: none;
    width: 100%;
    padding: 24px;
    align-items: center;
    flex-direction: column;
  }

  .different-card-content {
    align-items: center;
    text-align: center;
  }

  .different-card {
    padding: 32px 24px;
  }

  .different-card-title {
    font-size: 14px;
  }

  .different-card-description {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .different-title {
    font-size: 28px;
  }

  .different-card {
    padding: 24px 20px;
  }
}

/* Responsive styles for Performance Scale section */
@media (max-width: 1200px) {
  .performance-scale-section {
    padding: 60px 30px;
  }

  .performance-scale-title {
    font-size: 40px;
  }

  .performance-scale-stats {
    gap: 30px;
    padding: 0 15px;
  }

  .performance-stat-value {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .performance-scale-section {
    padding: 40px 20px;
    margin: 0 20px;
  }

  .performance-scale-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .performance-scale-stats {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px 30px;
    padding: 0 20px;
  }

  .performance-stat {
    white-space: nowrap;
    flex: 0 0 calc(33.333% - 20px);
    text-align: center;
  }

  .performance-stat:nth-child(4),
  .performance-stat:nth-child(5) {
    flex: 0 0 calc(50% - 15px);
    margin-top: 10px;
  }

  .performance-stat-value {
    font-size: 48px;
  }

  .performance-stat-label {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .performance-container {
    padding: 0 20px;
  }
  .performance-scale-section {
    padding: 30px 15px;
  }

  .performance-scale-title {
    font-size: 28px;
  }

  .performance-scale-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0 10px;
  }

  .performance-stat-value {
    font-size: 40px;
  }

  .performance-stat-label {
    font-size: 13px;
  }
}
