/* =========================================================
   TRADEVEST EXAMS — SECTIONS CSS
========================================================= */

/* =========================================================
   MOCK TESTS
========================================================= */

.mock-tests{
  overflow:hidden;

  padding:80px 0;

  background:var(--white);
}

/* =========================================================
   BUNDLE SECTION
========================================================= */

.bundle-section{
  overflow:hidden;

  padding:80px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(6,182,212,.10),
      transparent 35%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(59,130,246,.08),
      transparent 35%
    ),

    linear-gradient(
      135deg,
      #f4fdff 0%,
      #eefcff 50%,
      #f8feff 100%
    );
}

.bundle-grid{
  display:grid;

  grid-template-columns:1.3fr .9fr;

  gap:26px;

  margin-top:40px;
}

.bundle-content,
.bundle-pricing{
  position:relative;

  min-width:0;

  overflow:hidden;

  padding:34px;

  background:var(--white);

  border:1px solid var(--border);
  border-radius:26px;

  box-shadow:
    0 8px 24px rgba(15,23,42,.04);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.bundle-content:hover,
.bundle-pricing:hover{
  transform:translateY(-2px);

  box-shadow:
    0 14px 30px rgba(15,23,42,.08);
}

.bundle-content{
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafafa 100%
    );
}

.bundle-badge{
  display:inline-flex;
  align-items:center;

  margin-bottom:18px;

  padding:6px 14px;

  border-radius:999px;

  background:#dbeafe;

  color:#1d4ed8;

  font-size:12px;
  font-weight:700;

  letter-spacing:.3px;
}

.bundle-content h3{
  margin-bottom:22px;

  color:var(--text);

  font-size:28px;
  font-weight:700;
  line-height:1.3;

  letter-spacing:-.5px;
}

.bundle-features{
  list-style:none;
}

.bundle-features li{
  padding:13px 0;

  border-bottom:1px solid #f1f5f9;

  color:#475569;

  font-size:15px;
  line-height:1.7;
}

.bundle-features li:last-child{
  border-bottom:none;
}

.bundle-pricing{
  display:flex;
  flex-direction:column;
  justify-content:center;

  text-align:center;
}

.old-price{
  margin-bottom:10px;

  color:#94a3b8;

  font-size:18px;
  font-weight:600;

  text-decoration:line-through;
}

.save-price{
  display:inline-block;

  margin-bottom:18px;

  padding:6px 14px;

  border-radius:999px;

  background:#dcfce7;

  color:#166534;

  font-size:13px;
  font-weight:700;
}

.final-price{
  color:var(--text);

  font-size:52px;
  font-weight:800;
  line-height:1;

  letter-spacing:-1px;

  word-break:break-word;
}

.price-note{
  margin-top:10px;

  color:var(--muted);

  font-size:14px;
  line-height:1.7;
}

.bundle-btn{
  width:100%;
  height:52px;

  margin-top:28px;

  border-radius:14px;

  font-size:15px;
  font-weight:600;
}

/* =========================================================
   FAQ
========================================================= */

.faq{
  overflow:hidden;

  padding:80px 0;

  background:var(--white);
}

.faq-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:20px;

  margin-top:42px;
}

.faq-col{
  display:flex;
  flex-direction:column;

  gap:16px;
}

.faq-item{
  overflow:hidden;

  background:var(--white);

  border:1px solid var(--border);
  border-radius:18px;

  box-shadow:
    0 6px 20px rgba(15,23,42,.04);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.faq-item:hover{
  transform:translateY(-2px);

  box-shadow:
    0 12px 26px rgba(15,23,42,.06);
}

.faq-question{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  padding:20px 22px;

  background:none;
  border:none;

  color:var(--text);

  font-size:16px;
  font-weight:600;

  text-align:left;

  cursor:pointer;
}

.faq-question span{
  flex-shrink:0;

  color:var(--muted);

  font-size:22px;

  transition:
    transform .25s ease,
    color .25s ease;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);

  color:var(--primary);
}

.faq-answer{
  max-height:0;

  overflow:hidden;

  padding:0 22px;

  transition:
    max-height .35s ease,
    padding .35s ease;
}

.faq-answer p{
  padding-bottom:20px;

  color:var(--muted);

  font-size:14px;
  line-height:1.7;
}

.faq-item.active .faq-answer{
  max-height:220px;

  padding:0 22px 20px;
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact{
  overflow:hidden;

  padding:35px 0;

  background:
    linear-gradient(
      135deg,
      #f8fbff 0%,
      #eef4ff 50%,
      #f8fbff 100%
    );
}

.contact-inner{
  width:100%;
  max-width:620px;

  margin:0 auto;

  text-align:center;
}

.contact h2{
  margin-bottom:10px;

  color:var(--text);

  font-size:36px;
  font-weight:700;

  letter-spacing:-.5px;
}

.contact-inner > p{
  margin-bottom:30px;

  color:var(--muted);

  font-size:16px;
  line-height:1.7;
}

.contact-form{
  width:100%;

  overflow:hidden;

  padding:28px;

  background:var(--white);

  border:1px solid var(--border);
  border-radius:22px;

  box-shadow:
    0 8px 24px rgba(15,23,42,.05);
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

  .bundle-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

  .mock-tests,
  .bundle-section,
  .faq{
    padding:70px 0;
  }

  .contact{
    padding:25px 0;
  }

  .contact-inner{
    padding:0 14px;
  }

  .contact h2{
    font-size:32px;
  }

  .contact-form{
    padding:22px 18px;
  }

  .bundle-content,
  .bundle-pricing{
    padding:26px;
  }

  .bundle-content h3{
    font-size:24px;
  }

  .final-price{
    font-size:44px;
  }

  .faq-question{
    padding:18px 20px;

    font-size:15px;
  }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

  .bundle-content,
  .bundle-pricing{
    padding:22px;
  }

  .bundle-content h3{
    font-size:22px;
  }

  .final-price{
    font-size:38px;
  }

}
