:root {
  --vesper-purple: #596AEC;
  --vesper-purple-secondary: #DEE1FB;
  --vesper-purple-tertiary: #EEF0FD;
  --vesper-purple-quaternary: #F4F5FC;
  --vesper-gray-150: #F8FCFF;
  --vesper-gray-300: #EDF2F7;
  --vesper-gray-400: #E2E8F0;
  --vesper-gray-600: #A0AEC0;
  --vesper-gray-700: #718096;
  --vesper-gray-800: #4A5568;
  --vesper-gray-900: #2D3748;
  --vesper-black: #1A202C;
  --vesper-white: #FFFFFF;
}

/* =============================
   H1 HERO HEADING
   ============================= */

.vesper-h1-hero {
  font-size: 36px;
  line-height: 48.97px;
  font-weight: 700;
  color: var(--vesper-black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.vesper-h1-hero span {
  color: var(--vesper-purple);
}

@media (max-width: 768px) {
  .vesper-h1-hero {
    font-size: 26px;
    line-height: 36px;
  }
}

/* =============================
   FAQ SECTION ON INDEX.HTML
   ============================= */

.vesper-faq-section {
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 64px;
  padding: 48px 24px 56px;
  background-color: var(--vesper-purple-quaternary);
  border-top: 1px solid var(--vesper-gray-400);
}

.vesper-faq-section__inner {
  max-width: 860px;
  margin: 0 auto;
}

.vesper-faq-section__hero-title {
  font-size: 36px;
  line-height: 48.97px;
  font-weight: 700;
  color: var(--vesper-black);
  margin-bottom: 8px;
}

.vesper-faq-section__hero-title span {
  color: var(--vesper-purple);
}

.vesper-faq-section__subtitle {
  font-size: 16px;
  color: var(--vesper-gray-700);
  margin-bottom: 36px;
  line-height: 1.6;
}

.vesper-faq-section__heading {
  font-size: 28px;
  line-height: 38.09px;
  font-weight: 600;
  color: var(--vesper-black);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .vesper-faq-section {
    padding: 36px 16px 40px;
    margin-top: 40px;
  }

  .vesper-faq-section__hero-title {
    font-size: 26px;
    line-height: 36px;
  }

  .vesper-faq-section__heading {
    font-size: 22px;
    line-height: 30px;
  }
}

/* =============================
   ACCORDION
   ============================= */

.vesper-accordion {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.vesper-accordion__item {
  background-color: var(--vesper-white);
  border: 1px solid var(--vesper-gray-400);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.vesper-accordion__item:hover {
  box-shadow: 0px 4px 8px rgba(89, 106, 236, 0.10);
}

.vesper-accordion__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--vesper-black);
  line-height: 1.4;
  outline: none;
  transition: color 0.2s ease;
}

.vesper-accordion__question:hover {
  color: var(--vesper-purple);
}

.vesper-accordion__question h2 {
  font-size: 16px;
  font-weight: 600;
  color: inherit;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

.vesper-accordion__icon {
  flex-shrink: 0;
  margin-left: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.vesper-accordion__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--vesper-purple);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vesper-accordion__item.is-open .vesper-accordion__icon {
  transform: rotate(180deg);
}

.vesper-accordion__item.is-open .vesper-accordion__question {
  color: var(--vesper-purple);
}

.vesper-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s ease;
  padding: 0 20px;
}

.vesper-accordion__item.is-open .vesper-accordion__body {
  max-height: 600px;
  padding: 0 20px 20px;
}

.vesper-accordion__answer {
  font-size: 14px;
  font-weight: 400;
  color: var(--vesper-gray-700);
  line-height: 1.7;
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--vesper-gray-300);
  padding-top: 14px;
}

/* =============================
   FAQ SECTION FOOTER LINKS
   ============================= */

.vesper-faq-section__links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--vesper-gray-400);
}

.vesper-faq-section__links a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--vesper-purple);
  text-decoration: none;
  transition: color 0.2s ease;
  gap: 6px;
}

.vesper-faq-section__links a:hover {
  color: var(--vesper-black);
}

.vesper-faq-section__links a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* =============================
   SHARED PAGE LAYOUT (faq + about)
   ============================= */

.vp-page {
  min-height: 100vh;
  background-color: var(--vesper-gray-150);
  font-family: Inter, sans-serif;
  color: var(--vesper-black);
  overflow-x: hidden;
}

.vp-page__topbar {
  background-color: var(--vesper-white);
  border-bottom: 1px solid var(--vesper-gray-400);
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
}

.vp-page__topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vp-page__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-top: 10px;
}

.vp-page__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vp-page__nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--vesper-gray-700);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.vp-page__nav-link:hover {
  background-color: var(--vesper-gray-300);
  color: var(--vesper-purple);
}

.vp-page__nav-link--active {
  background-color: var(--vesper-purple);
  color: var(--vesper-white);
  box-shadow: 0px 4px 8px rgba(89,106,236,0.18);
}

.vp-page__nav-link--active:hover {
  background-color: var(--vesper-purple);
  color: var(--vesper-white);
}

.vp-page__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

@media (max-width: 768px) {
  .vp-page__topbar {
    height: auto;
    padding: 16px;
  }

  .vp-page__topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .vp-page__nav {
    flex-wrap: wrap;
  }

  .vp-page__content {
    padding: 28px 16px 60px;
  }
}

/* =============================
   PAGE HERO BANNER
   ============================= */

.vp-hero {
  background: linear-gradient(135deg, var(--vesper-purple-quaternary) 0%, var(--vesper-purple-tertiary) 100%);
  border-radius: 12px;
  padding: 40px 36px;
  margin-bottom: 40px;
  border: 1px solid var(--vesper-gray-400);
}

.vp-hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vesper-purple);
  background-color: var(--vesper-purple-secondary);
  padding: 4px 10px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.vp-hero__title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--vesper-black);
  margin-bottom: 12px;
}

.vp-hero__title span {
  color: var(--vesper-purple);
}

.vp-hero__desc {
  font-size: 15px;
  color: var(--vesper-gray-700);
  line-height: 1.7;
  max-width: 640px;
}

@media (max-width: 768px) {
  .vp-hero {
    padding: 28px 20px;
  }

  .vp-hero__title {
    font-size: 24px;
  }
}

/* =============================
   CONTENT SECTIONS
   ============================= */

.vp-section {
  margin-bottom: 36px;
}

.vp-section__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--vesper-black);
  margin-bottom: 12px;
  line-height: 1.35;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--vesper-purple-secondary);
}

.vp-section__text {
  font-size: 14px;
  color: var(--vesper-gray-700);
  line-height: 1.75;
  margin-bottom: 14px;
}

.vp-section__text:last-child {
  margin-bottom: 0;
}

/* =============================
   STATS ROW
   ============================= */

.vp-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.vp-stats__item {
  flex: 1 1 160px;
  background-color: var(--vesper-white);
  border: 1px solid var(--vesper-gray-400);
  border-radius: 10px;
  padding: 20px 18px;
  text-align: center;
}

.vp-stats__value {
  font-size: 22px;
  font-weight: 700;
  color: var(--vesper-purple);
  margin-bottom: 4px;
}

.vp-stats__label {
  font-size: 12px;
  color: var(--vesper-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* =============================
   FEATURE CARDS
   ============================= */

.vp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.vp-card {
  background-color: var(--vesper-white);
  border: 1px solid var(--vesper-gray-400);
  border-radius: 10px;
  padding: 22px 20px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.vp-card:hover {
  box-shadow: 0px 4px 12px rgba(89, 106, 236, 0.12);
  border-color: var(--vesper-purple-secondary);
}

.vp-card__icon {
  width: 36px;
  height: 36px;
  background-color: var(--vesper-purple-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.vp-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--vesper-purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vp-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--vesper-black);
  margin-bottom: 8px;
}

.vp-card__text {
  font-size: 13px;
  color: var(--vesper-gray-700);
  line-height: 1.65;
}

/* =============================
   FAQ PAGE ACCORDION
   ============================= */

.vp-faq-accordion {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.vp-faq-accordion__item {
  background-color: var(--vesper-white);
  border: 1px solid var(--vesper-gray-400);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.vp-faq-accordion__item:hover {
  box-shadow: 0px 4px 8px rgba(89, 106, 236, 0.10);
}

.vp-faq-accordion__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--vesper-black);
  line-height: 1.4;
  outline: none;
  transition: color 0.2s ease;
}

.vp-faq-accordion__question:hover {
  color: var(--vesper-purple);
}

.vp-faq-accordion__question h2 {
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

.vp-faq-accordion__icon {
  flex-shrink: 0;
  margin-left: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.vp-faq-accordion__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--vesper-purple);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vp-faq-accordion__item.is-open .vp-faq-accordion__icon {
  transform: rotate(180deg);
}

.vp-faq-accordion__item.is-open .vp-faq-accordion__question {
  color: var(--vesper-purple);
}

.vp-faq-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s ease;
  padding: 0 20px;
}

.vp-faq-accordion__item.is-open .vp-faq-accordion__body {
  max-height: 800px;
  padding: 0 20px 20px;
}

.vp-faq-accordion__answer {
  font-size: 14px;
  font-weight: 400;
  color: var(--vesper-gray-700);
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid var(--vesper-gray-300);
  padding-top: 14px;
}

/* =============================
   PAGE FOOTER LINKS
   ============================= */

.vp-page-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--vesper-gray-400);
}

.vp-page-links__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.vp-page-links__btn--primary {
  background-color: var(--vesper-purple);
  color: var(--vesper-white);
  box-shadow: 0px 4px 8px rgba(89,106,236,0.18);
}

.vp-page-links__btn--primary:hover {
  opacity: 0.88;
}

.vp-page-links__btn--secondary {
  background-color: var(--vesper-purple-secondary);
  color: var(--vesper-purple);
}

.vp-page-links__btn--secondary:hover {
  background-color: var(--vesper-purple-tertiary);
}

.vp-page-links__btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================
   ABOUT PAGE TEAM / MISSION BLOCK
   ============================= */

.vp-mission {
  background: linear-gradient(135deg, var(--vesper-purple) 0%, #7B8FFF 100%);
  border-radius: 12px;
  padding: 36px 32px;
  margin-bottom: 36px;
  color: var(--vesper-white);
}

.vp-mission__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--vesper-white);
}

.vp-mission__text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}

@media (max-width: 640px) {
  .vp-mission {
    padding: 24px 18px;
  }

  .vp-mission__title {
    font-size: 18px;
  }
}

/* =============================
   BREADCRUMB
   ============================= */

.vp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--vesper-gray-600);
}

.vp-breadcrumb a {
  color: var(--vesper-purple);
  text-decoration: none;
  font-weight: 500;
}

.vp-breadcrumb a:hover {
  text-decoration: underline;
}

.vp-breadcrumb__sep {
  color: var(--vesper-gray-400);
}

/* =============================
   PAGE FOOTER BAR
   ============================= */

.vp-footer {
  background-color: var(--vesper-white);
  border-top: 1px solid var(--vesper-gray-400);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--vesper-gray-600);
  margin-top: auto;
}

.vp-footer a {
  color: var(--vesper-purple);
  text-decoration: none;
  font-weight: 500;
}

.vp-footer a:hover {
  text-decoration: underline;
}

/* =============================
   UTILITY
   ============================= */

.vp-divider {
  border: none;
  border-top: 1px solid var(--vesper-gray-400);
  margin: 32px 0;
}

.vp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--vesper-purple);
  background-color: var(--vesper-purple-secondary);
  padding: 3px 9px;
  border-radius: 10px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.vp-highlight {
  color: var(--vesper-purple);
  font-weight: 600;
}