/* =========================
FAQ PREMIUM
========================= */

.faq-premium {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 153, 0, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 102, 0, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fff8ef 48%, #f8fafc 100%);
}

/* GLOW */
.faq-bg-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.36;
  pointer-events: none;
}

.faq-bg-glow-1 {
  top: 70px;
  left: -130px;
  background: #ff9900;
}

.faq-bg-glow-2 {
  right: -130px;
  bottom: 120px;
  background: #ff6600;
}

/* WRAPPER */
.faq-wrapper {
  position: relative;
  z-index: 2;
}

/* HEADING */
.faq-heading {
  max-width: 840px;
  margin: 0 auto 55px;
  text-align: center;
}

.faq-label {
  background: rgba(255, 153, 0, 0.12);
  border: 1px solid rgba(255, 153, 0, 0.25);
  color: #ff6600;
}

.faq-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.faq-heading h2 span {
  display: block;
  color: #ff9900;
  background: linear-gradient(135deg, #ff9900, #ff6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
}

/* LAYOUT */
.faq-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 28px;
  align-items: start;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ITEM */
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 16px 45px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.35s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 153, 0, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(255, 153, 0, 0.08), transparent 45%);
  opacity: 0;
  transition: 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 0, 0.34);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.12),
    0 12px 28px rgba(255, 153, 0, 0.12);
}

.faq-item:hover::before,
.faq-item[open]::before {
  opacity: 1;
}

/* SUMMARY */
.faq-item summary {
  position: relative;
  z-index: 2;
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff4e8, #ffffff);
  border: 1px solid rgba(255, 153, 0, 0.22);
  color: #ff6600;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 153, 0, 0.12);
}

.faq-item h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 850;
}

/* PLUS ICON */
.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: linear-gradient(135deg, #ff9900, #ff6600);
  color: #ffffff;
  transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
  position: relative;
  z-index: 2;
  padding: 0 26px 26px 84px;
}

.faq-answer p {
  margin: 0;
  color: #64748b;
  line-height: 1.85;
  font-size: 15.5px;
}

/* SIDE CARD */
.faq-side-card {
  position: sticky;
  top: 100px;
  overflow: hidden;
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94)),
    radial-gradient(circle at top right, rgba(255, 153, 0, 0.2), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.faq-side-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 153, 0, 0.24);
  filter: blur(28px);
}

.faq-side-icon,
.faq-side-card h3,
.faq-side-card p,
.faq-side-list,
.faq-side-cta {
  position: relative;
  z-index: 2;
}

.faq-side-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff9900, #ff6600);
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(255, 153, 0, 0.34);
}

.faq-side-card h3 {
  color: #ffffff;
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.faq-side-card p {
  color: #cbd5e1;
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 22px;
}

.faq-side-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.faq-side-list span {
  display: block;
  padding: 11px 13px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-side-cta {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  background: linear-gradient(135deg, #ff9900, #ff6600);
  box-shadow: 0 16px 34px rgba(255, 153, 0, 0.3);
  transition: 0.3s ease;
}

.faq-side-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(255, 153, 0, 0.42);
}

/* =========================
RESPONSIVE TABLET
========================= */

@media (max-width: 992px) {
  .faq-premium {
    padding: 85px 20px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-side-card {
    position: relative;
    top: auto;
  }
}

/* =========================
RESPONSIVE MOBILE
========================= */

@media (max-width: 768px) {
  .faq-premium {
    padding: 70px 15px;
  }

  .faq-heading {
    margin-bottom: 38px;
  }

  .faq-heading h2 {
    font-size: 30px;
  }

  .faq-heading p {
    font-size: 14.5px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-item {
    border-radius: 20px;
  }

  .faq-item summary {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 20px 18px;
  }

  .faq-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 13px;
  }

  .faq-item h3 {
    font-size: 17px;
  }

  .faq-item summary::after {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .faq-answer {
    padding: 0 18px 22px 68px;
  }

  .faq-answer p {
    font-size: 14.5px;
    line-height: 1.75;
  }

  .faq-side-card {
    padding: 26px 20px;
    border-radius: 24px;
    text-align: center;
  }

  .faq-side-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-side-card h3 {
    font-size: 23px;
  }
}

@media (max-width: 420px) {
  .faq-heading h2 {
    font-size: 27px;
  }

  .faq-item summary {
    grid-template-columns: 1fr auto;
  }

  .faq-number {
    display: none;
  }

  .faq-answer {
    padding: 0 18px 22px;
  }
}