:root {
  --faq-brand: #75fb6e;
  --faq-primary: #17181b;
  --faq-secondary: #9ca3af;
  --faq-white: #fff;
  --faq-gray-bg: #f9fafb;
  --faq-border: rgba(0,1,3,0.08);
  --faq-radius: 16px;
  --faq-radius-sm: 12px;
}

/* ========== FAQ SECTION ON INDEX ========== */

.faq-section {
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 64px;
  padding: 56px 20px 48px;
  background: #f9fafb;
  border-top: 1px solid rgba(0,1,3,0.06);
  font-family: 'Geist', sans-serif;
}

.faq-section-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* ========== H1 HERO STYLE ========== */

.faq-hero-h1 {
  font-family: 'Geist', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: #17181b;
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.faq-hero-h1 .faq-brand-highlight {
  display: inline-block;
  background: linear-gradient(90deg, #e2fc6f 0%, #75fb6e 100%);
  border-radius: 8px;
  padding: 0 10px;
  color: #17181b;
}

.faq-hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4b5563;
  text-align: center;
  margin: 0 0 48px 0;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0,1,3,0.07);
  border-radius: var(--faq-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(0,1,3,0.13);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #17181b;
  text-align: left;
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question h2 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #17181b;
  font-family: 'Geist', sans-serif;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: #17181b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 20px 20px 20px;
  border-top: 1px solid rgba(0,1,3,0.06);
  padding-top: 16px;
}

.faq-answer h3 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  font-family: 'Geist', sans-serif;
}

/* ========== FAQ NAV LINKS ========== */

.faq-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.faq-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 12px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-nav-link--primary {
  background: #17181b;
  color: #fff;
  border: 1px solid #17181b;
}

.faq-nav-link--primary:hover {
  background: #263344;
  border-color: #263344;
}

.faq-nav-link--secondary {
  background: #f3f4f6;
  color: #17181b;
  border: 1px solid rgba(0,1,3,0.07);
}

.faq-nav-link--secondary:hover {
  background: #e5e7eb;
  border-color: rgba(0,1,3,0.13);
}

/* ========== PAGE LAYOUT (FAQ / ABOUT PAGES) ========== */

.page-wrapper {
  min-height: 100vh;
  background: #f9fafb;
  font-family: 'Geist', sans-serif;
}

.page-header {
  background: #fff;
  border-bottom: 1px solid rgba(0,1,3,0.07);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.page-header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 20px;
}

.page-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #17181b;
  font-size: 16px;
  font-weight: 500;
}

.page-logo svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}

.page-nav-link:hover {
  background: #f3f4f6;
  color: #17181b;
}

.page-nav-link--active {
  background: #f3f4f6;
  color: #17181b;
  border-color: rgba(0,1,3,0.07);
}

.page-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  background: #17181b;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  border: 1px solid #17181b;
}

.page-nav-cta:hover {
  background: #263344;
}

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

.page-hero {
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(0,1,3,0.06);
  padding: 56px 20px 48px;
}

.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  background: linear-gradient(90deg, #e2fc6f 0%, #75fb6e 100%);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #17181b;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-hero-h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: #17181b;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.page-hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

/* ========== PAGE CONTENT ========== */

.page-content {
  max-width: 100%;
  overflow-x: hidden;
  padding: 48px 20px 64px;
}

.page-content-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* ========== SECTION CARD ========== */

.section-card {
  background: #fff;
  border: 1px solid rgba(0,1,3,0.07);
  border-radius: var(--faq-radius);
  padding: 28px 28px 24px;
  margin-bottom: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section-card:hover {
  border-color: rgba(0,1,3,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.section-card:last-child {
  margin-bottom: 0;
}

.section-card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #17181b;
  margin: 0 0 12px 0;
}

.section-card-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

.section-card-text + .section-card-text {
  margin-top: 10px;
}

/* ========== FEATURE GRID ========== */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-card {
  background: #f9fafb;
  border: 1px solid rgba(0,1,3,0.07);
  border-radius: var(--faq-radius-sm);
  padding: 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  background: #f3f4f6;
  border-color: rgba(0,1,3,0.12);
}

.feature-card-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #e2fc6f 0%, #75fb6e 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.feature-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #17181b;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.feature-card-desc {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.55;
}

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(0,1,3,0.07);
  border-radius: var(--faq-radius-sm);
  padding: 20px 16px;
  text-align: center;
}

.stat-value {
  font-size: 28px;
  font-weight: 400;
  color: #17181b;
  line-height: 1.1;
  margin-bottom: 4px;
  display: block;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.3;
  display: block;
}

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

.faq-page-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-page-item {
  background: #fff;
  border: 1px solid rgba(0,1,3,0.07);
  border-radius: var(--faq-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-page-item.is-open {
  border-color: rgba(0,1,3,0.13);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.faq-page-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #17181b;
  text-align: left;
  transition: background 0.15s ease;
}

.faq-page-question:hover {
  background: #f9fafb;
}

.faq-page-question h2 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #17181b;
  font-family: 'Geist', sans-serif;
}

.faq-page-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq-page-item.is-open .faq-page-chevron {
  transform: rotate(180deg);
  color: #17181b;
}

.faq-page-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
}

.faq-page-item.is-open .faq-page-answer {
  max-height: 800px;
  opacity: 1;
}

.faq-page-answer-inner {
  padding: 0 20px 20px 20px;
  border-top: 1px solid rgba(0,1,3,0.06);
  padding-top: 16px;
}

.faq-page-answer-inner p {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  font-family: 'Geist', sans-serif;
}

.faq-page-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-page-answer-inner ul {
  margin: 8px 0 0 0;
  padding: 0 0 0 18px;
}

.faq-page-answer-inner ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 4px;
  list-style: disc;
}

/* ========== PAGE FOOTER AREA ========== */

.page-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,1,3,0.07);
}

.page-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 12px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-footer-link--primary {
  background: #17181b;
  color: #fff;
  border: 1px solid #17181b;
}

.page-footer-link--primary:hover {
  background: #263344;
  border-color: #263344;
}

.page-footer-link--secondary {
  background: #f3f4f6;
  color: #17181b;
  border: 1px solid rgba(0,1,3,0.07);
}

.page-footer-link--secondary:hover {
  background: #e5e7eb;
}

/* ========== ABOUT PAGE SECTIONS ========== */

.about-section-header {
  margin-bottom: 32px;
}

.about-section-label {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  background: #f3f4f6;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.about-section-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: #17181b;
  margin: 0 0 12px 0;
}

.about-section-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f9fafb;
  border: 1px solid rgba(0,1,3,0.07);
  border-radius: var(--faq-radius-sm);
}

.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e2fc6f 0%, #75fb6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.team-name {
  font-size: 14px;
  font-weight: 500;
  color: #17181b;
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.team-role {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  margin: 0;
  line-height: 1.3;
}

/* ========== TIMELINE ========== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #75fb6e;
  border: 2px solid #17181b;
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-line {
  flex: 1;
  width: 1px;
  background: rgba(0,1,3,0.1);
  margin-top: 4px;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-year {
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.timeline-event {
  font-size: 14px;
  font-weight: 400;
  color: #17181b;
  margin: 0;
  line-height: 1.5;
}

.timeline-desc {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  margin: 4px 0 0 0;
  line-height: 1.55;
}

/* ========== INLINE DIVIDER ========== */

.section-divider {
  height: 1px;
  background: rgba(0,1,3,0.07);
  margin: 24px 0;
  border: none;
}

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

@media (max-width: 767px) {
  .faq-hero-h1 {
    font-size: 26px;
  }

  .faq-section {
    margin-top: 40px;
    padding: 40px 16px 36px;
  }

  .page-hero {
    padding: 40px 16px 36px;
  }

  .page-hero-h1 {
    font-size: 28px;
  }

  .page-content {
    padding: 32px 16px 48px;
  }

  .section-card {
    padding: 20px 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row .stat-card:last-child {
    grid-column: span 2;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .faq-nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-nav-link {
    justify-content: center;
  }

  .page-footer-links {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .page-footer-link {
    justify-content: center;
  }

  .page-nav {
    display: none;
  }

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

  .about-section-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .faq-hero-h1 {
    font-size: 22px;
  }

  .page-hero-h1 {
    font-size: 24px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row .stat-card:last-child {
    grid-column: span 1;
  }
}