.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;

    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: #fff;

    pointer-events: none;

    mix-blend-mode: difference;

    transform: translate(-50%, -50%) scale(1);

    transition: transform 0.25s ease;

    will-change: transform;
}

.custom-cursor.active {
    transform: translate(-50%, -50%) scale(3.5);
}

:root {
  --bg: #010101;
  --text: #ffffff;
  --accent: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --active-bg: #ffffff;
  --active-text: #010101;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── SVG background blobs ── */
.bg-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-blobs svg {
  position: absolute;
  filter: blur(50px);
  opacity: 0.55;
}
.blob-1 {
  left: -8%;
  top: 10%;
  width: 1000px;
  rotate: 30deg;
}
.blob-2 {
  right: -8%;
  top: 55%;
  width: 800px;
  rotate: 30deg;
}

/* ── Layout ── */
.page-wrap {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ── Hero section ── */
.faq-hero {
  align-self: start;
  width: 100%;
}

.faq-heading {
  font-size: 80px;
  letter-spacing: -0.5px;
  color: var(--text);
  align-self: start;
}
.faq-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 18px;
  width: 60%;
  line-height: 1.5;
}

.faq-subtitle a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Main FAQ section ── */
.main-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 65%;
  margin-top: 80px;
}

/* ── Tab Navigation ── */
.tab-nav {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 48px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  position: relative;
  padding: 12px 30px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.35s ease;
  white-space: nowrap;
  /* inactive: gradient background + gradient border via pseudo-element */
  background: linear-gradient(135deg, #7e7e7e 0%, #2b2b2b 100%);
  color: #fff;
  /* gradient border */
  box-shadow: inset 0 0 0 1px transparent;
}

/* Gradient border for inactive tabs using pseudo-element */
.tab-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(135deg, #d4d4d4 0%, #575757 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.tab-btn.active {
  background:
    linear-gradient(145deg, #e5e5e5 0%, #9a9a9a 75%, #4a4a4a) padding-box,
    linear-gradient(145deg, #7e7e7e 0%, #2b2b2b 75%) border-box;
  color: #000000;
}

.tab-btn.active::before {
  opacity: 0;
}

/* ── Accordion list ── */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

/* Tab panel */
.tab-panel {
  display: none;
  width: 100%;
}

.tab-panel.active {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Applied via JS — class triggers the animation, delay set inline */
.accordion.fade-in {
  animation: accordionFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Single accordion ── */
.accordion {
  border-radius: 18px;
  overflow: hidden;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(80px) saturate(180%) brightness(1.15);
  -webkit-backdrop-filter: blur(80px) saturate(180%) brightness(1.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 32px rgba(0, 0, 0, 0.35),
    0 1.5px 6px rgba(0, 0, 0, 0.25);
  position: relative;
}

.accordion::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.accordion.active {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(255, 255, 255, 0);
  box-shadow:
    0 8px 48px rgba(255, 255, 255, 0.1),
    0 2px 12px rgba(0, 0, 0, 0.18);
}

.accordion.active::before {
  display: none;
}

/* ── Accordion header (trigger) ── */
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  user-select: none;
  gap: 16px;
}

.accordion-question {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  transition: color 0.35s ease;
  flex: 1;
  max-width: 85%;
}

.accordion.active .accordion-question {
  color: var(--active-text);
}

/* ── Icon ── */
.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
}

.accordion-icon .icon-inactive,
.accordion-icon .icon-active {
  position: absolute;
  inset: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon .icon-active {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

.accordion.active .accordion-icon .icon-inactive {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

.accordion.active .accordion-icon .icon-active {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* SVG sizes */
.accordion-plus {
  width: 28px;
  height: 28px;
}
.accordion-minus {
  width: 22px;
  height: 6px;
}

/* ── Answer body ── */
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.accordion.active .accordion-body {
  grid-template-rows: 1fr;
}

.accordion-body-inner {
  overflow: hidden;
}

.accordion-answer {
  padding: 0 40px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(1, 1, 1, 0.7);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.35s ease 0.05s,
    transform 0.35s ease 0.05s,
    color 0.35s ease;
}

.accordion.active .accordion-answer {
  opacity: 1;
  transform: translateY(0);
  color: #2a2a2a;
}

/* ── Contact section ── */
.contact-section {
  margin-top: 120px;
  padding: 80px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: start;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.145);
  width: 100%;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--text);
}

.contact-sub {
  font-size: 20px;
  font-weight: 400;
  color: #a1a1a1;
  margin-top: 16px;
  line-height: 1.4;
}

/* ── Contact button ── */
.contact-btn-wrap {
  flex-shrink: 0;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background: var(--text);
  color: var(--bg);
  font-size: 18px;
  font-weight: 500;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
  position: relative;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    box-shadow 0.4s ease;
  overflow: visible;
  text-decoration: none;
}

.contact-btn:hover {
  box-shadow:
    0 0 60px rgba(255, 255, 255, 0.5),
    0 0 120px rgba(255, 255, 255, 0.25),
    0 0 200px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .main-faq {
    width: 80%;
  }
  .faq-heading {
    font-size: 72px;
  }
  .faq-subtitle {
    width: 75%;
    font-size: 20px;
  }
  .contact-title {
    font-size: 64px;
  }
}
@media (max-width: 768px) {
  .main-faq {
    width: 100%;
    margin-top: 56px;
  }
  .page-wrap {
    padding: 72px 24px 60px;
  }
  .faq-heading {
    font-size: 60px;
  }
  .faq-subtitle {
    font-size: 17px;
    width: 100%;
  }
  .tab-nav {
   margin-left: -30px;
margin-right: -50px;
width: calc(100% + 20px);

padding-right: 24px;
overflow-x: scroll;
    
  }
  .tab-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
  .accordion-list {
    margin-top: 48px;
    gap: 24px;
  }
  .accordion-header {
    padding: 24px;
  }
  .accordion-answer {
    padding: 0 24px 24px;
  }
  .accordion-question {
    font-size: 17px;
  }
  .contact-section {
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    padding: 60px 0 80px;
  }
  .contact-text {
    text-align: center;
  }

  .contact-title {
    font-size: 52px;
  }
  .contact-sub {
    font-size: 17px;
  }
  .contact-btn {
    padding: 16px 28px;
    font-size: 17px;
  }

  .contact-btn {
    box-shadow:
      0 0 40px rgba(255, 255, 255, 0.427),
      0 0 80px rgba(255, 255, 255, 0.288),
      0 0 100px rgba(255, 255, 255, 0.148),
      inset 0 1px 0 rgba(255, 255, 255, 0.189);
  }
}
@media (max-width: 480px) {
  .faq-heading {
    font-size: 46px;
  }
  .contact-title {
    font-size: 40px;
  }

  .main-faq {
    width: 100%;
  }

  .accordion-plus {
    width: 20px;
    height: 20px;
  }

  .accordion-minus {
    width: 18px;
    height: 4px;
  }

  .tab-nav {
    justify-content: start;
    gap: 10px;
  }

  .tab-panel.active {
    gap: 25px;
  }

  .blob-1 {
    left: -60%;
    top: 10%;
    width: 600px;
    rotate: 30deg;
  }

  .blob-2 {
    right: -50%;
    top: 55%;
    width: 500px;
    rotate: 30deg;
  }
}