/* =========================================
   EXEC PROGRAMS PAGE — exec-programs.css
========================================= */

/* =========================================
   SECTION 1 — INTRO
========================================= */

.execpage .exec-intro-section {
  width: 100%;
  padding: 130px 30px 150px;
  background: #f6f8fe;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.execpage .exec-top {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.execpage .exec-title {
  flex: 1;
  max-width: 700px;
  color: #082f56;
  font-size: 70px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.execpage .exec-title-spacer {
  flex: 1;
  max-width: 700px;
}

.execpage .exec-bottom {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.execpage .exec-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.execpage .exec-description {
  max-width: 500px;
  color: #212529;
  font-size: 17px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

.execpage .exec-intro-image {
  width: 701px;
  height: 701px;
  object-fit: cover;
  border-radius: 25px;
  display: block;
  flex-shrink: 0;
}

/* =========================================
   BUTTONS
========================================= */

.execpage .btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 13px 30px;
  background: transparent;
  border-radius: 45px;
  border: 1px solid #082f56;
  color: #082f56;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
  cursor: pointer;
}

.execpage .btn-outline-dark:hover {
  background: #082f56;
  color: #ffffff;
}

.execpage .btn-filled-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 13px 30px;
  background: #082f56;
  border-radius: 45px;
  border: 1px solid #082f56;
  color: #ffffff;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
  cursor: pointer;
}

.execpage .btn-filled-dark:hover {
  background: transparent;
  color: #082f56;
}

/* =========================================
   SECTION 2 — PROGRAMS LIST
========================================= */

.execpage .exec-programs-section {
  width: 100%;
  padding: 100px 30px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.execpage .exec-programs-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.execpage .exec-programs-label {
  max-width: 500px;
  color: #082f56;
  font-size: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.execpage .exec-programs-subtitle {
  max-width: 500px;
  color: #212529;
  font-size: 17px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

/* =========================================
   ACCORDION — LIST WRAPPER
========================================= */

.execpage .exec-program-list {
  display: flex;
  flex-direction: column;
}

.execpage .exec-program-item {
  border-top: 1px solid #082f56;
  padding-top: 30px;
}

.execpage .exec-program-item:last-child {
  border-bottom: 1px solid #082f56;
}
/* =========================================
   ACCORDION — HEADER ROW
========================================= */

.execpage .exec-program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    cursor: pointer;
    gap: 20px;
}

.execpage .exec-program-name {
    max-width: 700px;
    color: #082f56;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

/* circle chevron toggle — same as corporate page */
.execpage .exec-program-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid #082f56;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 8px;
    transition: background .25s;
}

.execpage .exec-program-toggle::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #082f56;
    border-bottom: 1.5px solid #082f56;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .3s, border-color .25s, margin-top .3s;
}

.execpage .exec-program-item.is-open .exec-program-toggle {
    background: #082f56;
}

.execpage .exec-program-item.is-open .exec-program-toggle::after {
    border-color: #ffffff;
    transform: rotate(-135deg);
    margin-top: 4px;
}

/* =========================================
   ACCORDION — EXPANDED BODY
========================================= */

.execpage .exec-program-body {
  display: none;
  align-items: flex-start;
  gap: 50px;
  padding-bottom: 150px;
}

.execpage .exec-program-item.is-open .exec-program-body {
  display: flex;
}

.execpage .exec-program-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.execpage .exec-program-details {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.execpage .exec-program-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.execpage .exec-program-block-title {
  max-width: 500px;
  color: #082f56;
  font-size: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.execpage .exec-program-block-text {
  max-width: 500px;
  color: #212529;
  font-size: 17px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

.execpage .exec-program-block-text strong {
  font-weight: 600;
  color: #212529;
}

.execpage .exec-program-image {
  width: 701px;
  height: 701px;
  object-fit: cover;
  border-radius: 25px;
  display: block;
  flex-shrink: 0;
}

/* =========================================
   FAQ CARD (dark, inside accordion)
========================================= */

.execpage .faq-card {
  align-self: stretch;
  padding: 30px 30px 100px;
  background: #082f56;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.execpage .faq-card-title {
  max-width: 500px;
  color: #ffffff;
  font-size: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.execpage .faq-list {
  display: flex;
  flex-direction: column;
}

.execpage .faq-item {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid #ffffff;
}

.execpage .faq-item.is-open .faq-answer {
  display: block;
  margin-top: 25px;
}

.execpage .faq-item:first-child {
  padding-top: 0;
}

.execpage .faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.execpage .faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.execpage .faq-question {
  max-width: 600px;
  color: #ffffff;
  font-size: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.execpage .faq-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.execpage .faq-toggle::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transform: rotate(45deg);
  margin-top: -4px;
  transition:
    transform 0.3s,
    border-color 0.25s,
    margin-top 0.3s;
}

.execpage .faq-item.is-open .faq-toggle {
  background: #ffffff;
}

.execpage .faq-item.is-open .faq-toggle::after {
  border-color: #082f56;
  transform: rotate(-135deg);
  margin-top: 4px;
}

.execpage .faq-answer {
  display: none;
  max-width: 600px;
  color: #ffffff;
  font-size: 17px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

/* =========================================
   LARGE SCREENS
========================================= */

@media (min-width: 1400px) {
  .execpage .exec-intro-section,
  .execpage .exec-programs-section {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (min-width: 1920px) {
  .execpage .exec-intro-section,
  .execpage .exec-programs-section {
    padding-left: 160px;
    padding-right: 160px;
  }

  .execpage .exec-title {
    font-size: 80px;
  }
}

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

@media (max-width: 991px) {
  .execpage .exec-intro-section,
  .execpage .exec-programs-section {
    padding: 80px 20px;
    gap: 50px;
  }

  .execpage .exec-top,
  .execpage .exec-bottom {
    flex-direction: column;
    gap: 30px;
  }

  .execpage .exec-title {
    font-size: 42px;
  }

  .execpage .exec-title-spacer {
    display: none;
  }

  .execpage .exec-intro-image {
    width: 100%;
    height: 350px;
  }

  .execpage .exec-program-name {
    font-size: 32px;
  }

  .execpage .exec-program-body {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 80px;
  }

  .execpage .exec-program-image {
    width: 100%;
    height: 350px;
  }

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

  .execpage .exec-program-block-title,
  .execpage .faq-card-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .execpage .exec-title {
    font-size: 32px;
  }

  .execpage .exec-description,
  .execpage .exec-programs-subtitle,
  .execpage .exec-program-block-text,
  .execpage .faq-answer {
    font-size: 15px;
  }

  .execpage .exec-program-name {
    font-size: 26px;
  }
}
