@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
:root {
  /* Colors */
  --color-primary: #F67214;
  --color-primary-hover: #E05F03;
  --color-primary-light: #FFF2E8;
  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #94A3B8;
  --color-bg-base: #FFFFFF;
  --color-bg-alt: #F9FAFB;
  --color-bg-hover: #F1F5F9;
  --color-border: #E2E8F0;
  --color-border-hover: #CBD5E1;
  --color-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --color-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --color-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -4px rgba(0, 0, 0, 0.03);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-max-width: 1680px;
  --container-padding: 110px;
  --header-height: 74.6px;
  --sidebar-left-width: 260px;
  --sidebar-right-width: 280px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   FAQ DETAIL PAGE — SCOPED DESIGN TOKENS
   Isolated from home page. Changes here do NOT affect index.html.
   ================================================================ */
.faq-detail-page {
  /* Layout — FAQ page uses tighter container padding than home */
  --faq-container-padding: 0px;
  --faq-body-padding-top: 4px;
  --faq-body-padding-bottom: 60px;
  --faq-body-gap: 32px;

  /* Hero section spacing — scoped, never shared with home hero */
  --faq-hero-padding-top: calc(var(--header-height) + 16px);
  --faq-hero-padding-bottom: 19px;

  /* Sidebar widths — override if needed for FAQ layout */
  --faq-sidebar-left: 290px;
  --faq-sidebar-right: 330px;

  /* Accordion spacing */
  --faq-accordion-padding: 20px 24px;
  --faq-accordion-gap: 12px;
}

/* Scoped body background image for all FAQ detail pages */
body.faq-detail-page {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('../assets/images/faqpage.webp') !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Apply FAQ container padding — overrides global 110px container-padding */
.faq-detail-page .container {
  padding-left: 220px !important;
  padding-right: 220px !important;
  max-width: 100%;
}

/* FAQ body grid uses scoped variables — not global --sidebar-* */
.faq-detail-page .faq-body-grid {
  display: grid !important;
  grid-template-columns: var(--faq-sidebar-left) 1fr var(--faq-sidebar-right);
  padding-top: var(--faq-body-padding-top);
  padding-bottom: var(--faq-body-padding-bottom);
  gap: var(--faq-body-gap);
  align-items: start !important;
}

/* Force sidebars to be sticky and hide scrollbars */
.faq-detail-page .sticky-sidebar {
  position: sticky !important;
  top: calc(var(--header-height) + 13px) !important;
  max-height: calc(100vh - var(--header-height) - 48px) !important;
  align-self: start !important;
  overflow-y: auto !important;
  scrollbar-width: none !important;
  /* Firefox */
}

.faq-detail-page .sticky-sidebar::-webkit-scrollbar {
  display: none !important;
  /* Chrome, Safari, Opera */
}

/* Hero uses scoped padding — not affected by any home page changes */
.faq-detail-page .faq-hero {
  padding-top: var(--faq-hero-padding-top);
  padding-bottom: var(--faq-hero-padding-bottom);
}

/* Accordion uses scoped gap */
.faq-detail-page .middle-content {
  gap: var(--faq-accordion-gap);
}

/* ── 1024px: Large tablet ── */
@media (max-width: 1024px) {
  .faq-detail-page .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .faq-detail-page .faq-body-grid {
    grid-template-columns: 1fr 240px;
    gap: 24px;
  }

  .faq-detail-page .left-column-sidebar {
    display: none;
  }
}

/* ── 768px: Tablet ── */
@media (max-width: 768px) {
  .faq-detail-page .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .faq-detail-page {
    --faq-body-padding-top: 20px;
    --faq-body-padding-bottom: 40px;
    --faq-body-gap: 16px;
    --faq-hero-padding-top: calc(var(--header-height) + 20px);
    --faq-hero-padding-bottom: 24px;
  }

  .faq-detail-page .faq-body-grid {
    grid-template-columns: 1fr;
  }

  .faq-detail-page .left-column-sidebar,
  .faq-detail-page .right-column-sidebar {
    display: none;
  }
}

/* ── 480px: Mobile ── */
@media (max-width: 480px) {
  .faq-detail-page .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .faq-detail-page {
    --faq-hero-padding-top: calc(var(--header-height) + 14px);
    --faq-hero-padding-bottom: 18px;
    --faq-body-padding-top: 14px;
    --faq-body-padding-bottom: 32px;
    --faq-accordion-gap: 10px;
  }
}

/* ── 360px: Small mobile ── */
@media (max-width: 360px) {
  .faq-detail-page .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
  background-image: radial-gradient(rgba(246, 114, 20, 0.035) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: center top;
  line-height: 1.6;
  font-size: 16px;
}

.inquiry-row:hover .action-circle {
  background: #f67214 !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: scale(1.05) !important;
}

.inquiry-row:hover .action-circle svg {
  transform: translateX(1px) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  font-weight: 600;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* ==========================================================================
   Layout Helpers & Common Components
   ========================================================================== */
.container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Global Nav Header */
.global-nav {
  height: var(--header-height);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.global-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo span {
  color: var(--color-primary);
}

.brand-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #FC9E5B 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 800;
  font-size: 16px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text-muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-cta {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.nav-cta:hover {
  background-color: var(--color-primary-hover);
}

/* ==========================================================================
   Home Page Layout
   ========================================================================== */
.hero-topics-wrapper {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 45%, rgba(246, 114, 20, 0.04) 0%, transparent 35%),
    radial-gradient(circle at 90% 75%, rgba(251, 191, 36, 0.03) 0%, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 30%, #fffdfb 55%, #ffffff 100%) !important;
}

.home-hero {
  padding: 110px 0 10px 0;
  background: transparent !important;
  position: relative;
  overflow: visible !important;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 800px;
  margin: 0;
}

.hero-content h1 {
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  line-height: 1.15;
  color: #1a1613;
}

.hero-content .hero-subtitle {
  font-size: 18px;
  color: #5c5652;
  margin: 0 0 36px 0;
  max-width: 580px;
  line-height: 1.75;
  letter-spacing: -0.01em;
}

/* Hero Image Direct Styles */
.hero-image-container {
  position: relative;
  display: inline-block;
  justify-self: end;
  margin-left: auto;
  overflow: hidden;
  max-width: 115%;
}

.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 0.55;
  transition: transform var(--transition-normal);
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
  mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}

.hero-image:hover {
  transform: translateY(-2px);
}

/* Text Gradient & Pills */
.text-gradient {
  background: linear-gradient(135deg, #cc5100 0%, #f67214 60%, #ff8533 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(246, 114, 20, 0.15);
}

/* Minimal Scroll CTA Button */
.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f67214 !important;
  color: #FFFFFF !important;
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(246, 114, 20, 0.15);
  transition: all 0.2s ease;
  position: relative;
}

.hero-scroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(246, 114, 20, 0.25);
  background: #d44d00 !important;
}

.hero-scroll-btn svg {
  transition: transform var(--transition-normal);
}

.hero-scroll-btn:hover svg {
  transform: translateY(3px);
}



/* FAQ Topics Grid Section */
.topics-section {
  padding: 90px 0 15px 0;
  background: transparent !important;
  border-bottom: none;
  position: relative;
  overflow: visible !important;
}

/* Decorative Background Blobs & Shapes */
.glow-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
  filter: blur(100px);
  /* high blur for ultra-soft organic color fade */
  opacity: 0.8;
}

/* Hero Section Blobs */
.hero-glow-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(246, 114, 20, 0.07) 0%, transparent 70%);
  top: -100px;
  left: -50px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
  bottom: -150px;
  right: -50px;
}

.hero-glow-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.04) 0%, transparent 70%);
  top: 20%;
  left: 40%;
}

/* Topics Section Blobs */
.glow-blob-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(246, 114, 20, 0.08) 0%, transparent 70%);
  top: -200px;
  left: 20%;
  /* bridges the hero gap! */
}

.glow-blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.07) 0%, transparent 70%);
  top: 30%;
  right: -100px;
}

.glow-blob-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.05) 0%, transparent 70%);
  bottom: -150px;
  left: -50px;
}

.floating-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.shape-1 {
  top: 8%;
  left: 6%;
  animation: float-slow 12s ease-in-out infinite alternate;
}

.shape-2 {
  top: 40%;
  right: 8%;
  animation: float-medium 8s ease-in-out infinite alternate;
}

.shape-3 {
  bottom: 12%;
  left: 4%;
  animation: float-slow 15s ease-in-out infinite alternate;
}

/* Modern animations for floating shapes */
@keyframes float-slow {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-20px) rotate(15deg);
  }
}

@keyframes float-medium {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  100% {
    transform: translateY(-15px) rotate(-20deg) scale(1.05);
  }
}

.topics-section .container {
  position: relative;
  z-index: 2;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #1a1613;
  /* Warm midnight charcoal */
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-header p {
  color: #5c5652;
  /* Warm slate-bronze */
  font-size: 16.5px;
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .topics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.topic-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 28px;
  min-height: 250px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: #0f172a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.012);
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f67214 0%, #ff8f3d 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.topic-card:hover::before {
  opacity: 1;
}

.topic-card-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.topic-card:hover .topic-card-desc {
  color: #475569;
}

.topic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(246, 114, 20, 0.08),
    0 1px 3px rgba(246, 114, 20, 0.04);
  border-color: rgba(246, 114, 20, 0.2);
}

/* Card Header (Icon and Badge side-by-side) */
.topic-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.topic-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(246, 114, 20, 0.04);
  border: 1px solid rgba(246, 114, 20, 0.08);
  color: #f67214;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(246, 114, 20, 0.02);
}

.topic-card-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.topic-card:hover .topic-card-icon {
  background: linear-gradient(135deg, #f67214 0%, #ff832b 100%);
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 6px 14px rgba(246, 114, 20, 0.25);
}

.topic-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: #f67214;
  background-color: rgba(246, 114, 20, 0.05);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(246, 114, 20, 0.08);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.topic-card:hover .topic-card-badge {
  background-color: #f67214;
  border-color: transparent;
  color: #ffffff;
}

/* Card Title */
.topic-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #0f172a;
  transition: color 0.3s ease;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.topic-card:hover .topic-card-title {
  color: #f67214;
}

/* Card Footer */
.topic-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: none;
  padding-top: 0;
  margin-top: auto;
}

.topic-card-action {
  font-size: 13.5px;
  font-weight: 700;
  color: #f67214;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
}

.topic-card:hover .topic-card-action {
  color: #ea580c;
  padding-left: 4px;
}

/* Redesigned Section 3: Popular inquiries List */
.popular-questions-section {
  padding: 40px 0 90px 0;
  background: linear-gradient(180deg, #fffdfb 0%, #ffffff 100%) !important;
  border-top: none;
  position: relative;
}

.inquiry-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.inquiry-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  border-radius: 16px !important;
  padding: 20px 24px !important;
  text-decoration: none !important;
  color: #0f172a !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015) !important;
  text-align: left !important;
}

.inquiry-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
  flex-grow: 1 !important;
}

.inquiry-tag {
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 3px 10px !important;
  border-radius: 100px !important;
  background-color: #f1f5f9 !important;
  color: #64748b !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.inquiry-title {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  margin: 0 !important;
  line-height: 1.45 !important;
  transition: color 0.3s ease !important;
}

.inquiry-action {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}

.action-text {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  transition: all 0.3s ease !important;
  opacity: 0 !important;
  transform: translateX(10px) !important;
}

.action-circle {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.action-circle svg {
  width: 16px !important;
  height: 16px !important;
  transition: transform 0.3s ease !important;
}

/* Hover Effects */
.inquiry-row:hover {
  background: #ffffff !important;
  border-color: rgba(246, 114, 20, 0.25) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(246, 114, 20, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.015) !important;
}

.inquiry-row:hover .inquiry-title {
  color: #f67214 !important;
}

.inquiry-row:hover .inquiry-tag {
  background-color: rgba(246, 114, 20, 0.08) !important;
  color: #f67214 !important;
}

.inquiry-row:hover .action-text {
  opacity: 1 !important;
  transform: translateX(0) !important;
  color: #f67214 !important;
}

.inquiry-row:hover .action-circle {
  background: #f67214 !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: scale(1.05) !important;
}

.inquiry-row:hover .action-circle svg {
  transform: translateX(1px) !important;
}

/* Responsive adjustment for Section 3 inquiry list layout */
@media (max-width: 768px) {
  .popular-questions-section {
    padding: 30px 0 50px 0 !important;
    background: linear-gradient(180deg, #fffdfb 0%, #ffffff 100%) !important;
  }

  .inquiry-list {
    gap: 14px !important;
  }

  .inquiry-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    padding: 18px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03) !important;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  }

  .inquiry-row:hover,
  .inquiry-row:active {
    border-color: rgba(246, 114, 20, 0.3) !important;
    box-shadow: 0 8px 24px rgba(246, 114, 20, 0.08) !important;
    transform: translateY(-2px) !important;
  }

  .inquiry-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .inquiry-tag {
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    background-color: #f1f5f9 !important;
    color: #475569 !important;
    border: none !important;
    display: inline-flex !important;
  }

  .inquiry-title {
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.38 !important;
    margin: 0 !important;
    width: 100% !important;
    text-align: left !important;
  }

  .inquiry-action {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-top: 4px !important;
    padding-top: 12px !important;
    border-top: 1px solid #f1f5f9 !important;
  }

  .action-text {
    opacity: 1 !important;
    transform: none !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    transition: color 0.25s ease !important;
  }

  .action-circle {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease !important;
  }

  .action-circle svg {
    width: 15px !important;
    height: 15px !important;
  }

  /* Interactive Hover & Tap Overrides for Mobile */
  .inquiry-row:hover .action-text,
  .inquiry-row:active .action-text {
    color: #f67214 !important;
  }

  .inquiry-row:hover .action-circle,
  .inquiry-row:active .action-circle {
    background: #f67214 !important;
    border-color: transparent !important;
    color: #ffffff !important;
  }
}

/* Redesigned CTA Section: Integrated Typographic Layout */
.cta-grid-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  position: relative;
  overflow: hidden;
}

.cta-dark-card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: relative !important;
  box-shadow: none !important;
  z-index: 1 !important;
}

/* Limited Access Badge */
.cta-dark-card h2 {
  font-family: var(--font-heading) !important;
  font-size: 38px !important;
  font-weight: 800 !important;
  color: #1a1613 !important;
  margin-bottom: 16px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.025em !important;
}

.text-orange-gradient {
  background: linear-gradient(135deg, #cc5100 0%, #f67214 60%, #ff9e59 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

.cta-dark-card p {
  font-size: 17px !important;
  color: #5c5652 !important;
  line-height: 1.65 !important;
  margin-bottom: 32px !important;
  max-width: 620px !important;
}

.cta-action-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
}

/* Glowing Access Button */
.cta-glowing-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 54px !important;
  padding: 0 36px !important;
  border-radius: 12px !important;
  background: #f67214 !important;
  color: #ffffff !important;
  border: none !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 20px rgba(246, 114, 20, 0.2) !important;
  text-decoration: none !important;
}

.cta-glowing-btn:hover {
  background: #d44d00 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(246, 114, 20, 0.35) !important;
}

.cta-glowing-btn svg {
  width: 16px !important;
  height: 16px !important;
  transition: transform 0.3s ease !important;
}

.cta-glowing-btn:hover svg {
  transform: translateX(4px) !important;
}

/* Spots Left Indicator */
.cta-waitlist-spots {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.cta-waitlist-spots svg {
  width: 16px !important;
  height: 16px !important;
  color: #f67214 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-grid-section {
    padding: 56px 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  }

  .cta-dark-card {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .cta-dark-card h2 {
    font-size: clamp(24px, 7vw, 30px) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.025em !important;
  }

  .cta-dark-card p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
    max-width: 100% !important;
  }

  .cta-glowing-btn {
    width: max-content !important;
    min-width: 220px !important;
    padding: 0 28px !important;
    height: 50px !important;
    font-size: 14.5px !important;
    border-radius: 10px !important;
  }
}

/* Footer Section */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-light);
}

/* ==========================================================================
   Individual FAQ Page Layout
   ========================================================================== */





/* Three Column Body Layout */
.faq-body-grid {
  display: grid;
  grid-template-columns: var(--sidebar-left-width) 1fr var(--sidebar-right-width);
  gap: 40px;
  padding: 48px 0;
  align-items: start;
}

/* General Sticky Sidebars */
.sticky-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  max-height: calc(100vh - var(--header-height) - 48px);
  overflow-y: auto;
  padding-right: 8px;
}

/* Left Sidebar Categories */
.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: left;
  transition: all var(--transition-fast);
  border-left: 2px solid transparent;
}

.category-item button:hover {
  background-color: var(--color-bg-hover);
  color: var(--color-text-main);
}

.category-item.active button {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  font-weight: 600;
}

.cat-count {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  background-color: var(--color-bg-hover);
  border-radius: 4px;
  color: var(--color-text-muted);
}

.category-item.active .cat-count {
  background-color: rgba(246, 114, 20, 0.15);
  color: var(--color-primary);
}

/* Middle Content Layout */
.middle-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* In-Page Search Bar */
.in-page-search {
  position: relative;
  width: 100%;
}

.in-page-search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: all var(--transition-fast);
  background-color: var(--color-bg-alt);
}

.in-page-search input:focus {
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px var(--color-primary-light);
  outline: none;
}

.search-icon-svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  pointer-events: none;
  width: 18px;
  height: 18px;
}

/* Horizontal chips (Hidden on desktop, shown on tablet/mobile) */
.mobile-category-scroll,
.mobile-category-dropdown {
  display: none;
}

/* Accordion Component */
.faq-accordion {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-bg-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  overflow: hidden;
}

.faq-accordion:hover {
  border-color: var(--color-border-hover);
}

.faq-accordion.is-expanded {
  border-color: var(--color-primary);
  box-shadow: var(--color-shadow-sm);
}

.faq-header-btn {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}

.faq-header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-badge {
  align-self: flex-start;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  background-color: var(--color-primary-light);
  padding: 2px 8px;
  border-radius: 4px;
}

.faq-question-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-main);
  /* Line Clamping for collapsed state */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.faq-accordion.is-expanded .faq-question-title {
  -webkit-line-clamp: unset;
  color: var(--color-primary);
}

.faq-chevron-icon {
  color: var(--color-text-light);
  transition: transform var(--transition-normal), color var(--transition-fast);
  margin-top: 4px;
  flex-shrink: 0;
}

.faq-accordion.is-expanded .faq-chevron-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* Accordion content wrapper with modern CSS grid-template-rows transition */
.faq-accordion-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-normal);
  overflow: hidden;
}

.faq-accordion.is-expanded .faq-accordion-content-wrapper {
  grid-template-rows: 1fr;
}

.faq-accordion-content {
  min-height: 0;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-alt);
}

.faq-answer-inner {
  padding: 24px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.faq-answer-inner p {
  margin-bottom: 16px;
}

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

/* Custom Answer Content styling */
.takeaways-box {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: 6px;
  padding: 16px;
  margin: 20px 0;
}

.takeaways-box h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.takeaways-box ul {
  padding-left: 20px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Related Questions Section */
.related-questions {
  margin-top: 24px;
  border-top: 1px dashed var(--color-border);
  padding-top: 16px;
}

.related-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.related-questions-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-question-link {
  font-size: 14px;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.related-question-link:hover {
  color: var(--color-primary);
}

/* Action Area: Helpful / Share / Copy */
.faq-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  font-size: 13px;
}

.faq-feedback-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-feedback-label {
  font-weight: 500;
  color: var(--color-text-muted);
}

.feedback-btn {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  font-weight: 500;
}

.feedback-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.feedback-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
}

.faq-share-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.share-action-btn:hover {
  color: var(--color-primary);
}

/* Right Sidebar Elements */
.right-sidebar-section {
  margin-bottom: 32px;
}

.right-sidebar-section h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  font-weight: 600;
  border-left: 2px solid var(--color-primary);
  padding-left: 8px;
}

/* On This Page Table of Contents */
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.toc-link button {
  text-align: left;
  padding: 4px 0;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.toc-link.active button,
.toc-link button:hover {
  color: var(--color-primary);
}

/* Related FAQ Pages */
.related-pages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.related-page-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-weight: 500;
}

.related-page-item a:hover {
  color: var(--color-primary);
}

.related-page-item.active a {
  color: var(--color-primary);
  font-weight: 600;
}

/* CTA Widget */
.sidebar-cta-card {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.sidebar-cta-card h5 {
  font-size: 16px;
  margin-bottom: 8px;
}

.sidebar-cta-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.sidebar-cta-btn {
  display: block;
  width: 100%;
  background-color: var(--color-primary);
  color: #FFFFFF;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.sidebar-cta-btn:hover {
  background-color: var(--color-primary-hover);
}

/* No results state in Search */
.no-results-state {
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed var(--color-border);
  border-radius: 8px;
  background-color: var(--color-bg-alt);
  display: none;
}

.no-results-state.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.no-results-state h4 {
  font-size: 16px;
  color: var(--color-text-main);
}

.no-results-state p {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 280px;
}

/* Toast Message for copying link */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-text-main);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--color-shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  pointer-events: none;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* 1. Tablet Viewport (Max 1024px) */
@media (max-width: 1024px) {
  :root {
    --sidebar-left-width: 200px;
  }

  /* Hide Right Sidebar completely */
  .faq-body-grid {
    grid-template-columns: var(--sidebar-left-width) 1fr;
  }

  .right-column-sidebar {
    display: none;
  }

  /* Convert Left Sidebar into horizontal category chips and make it span full-width above list */
  .faq-body-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .left-column-sidebar {
    width: 100%;
    position: static;
    max-height: none;
    overflow: visible;
  }

  /* Horizontal Category List Navigation */
  .category-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
  }

  .category-list::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
  }

  .category-item button {
    white-space: nowrap;
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 8px 16px;
  }

  .category-item.active button {
    background-color: transparent;
    border-left-color: transparent;
    border-bottom-color: var(--color-primary);
  }

  /* Add Tablet-specific Related Topics section below the FAQ questions list */
  .tablet-related-topics {
    display: block;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
  }

  .tablet-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Default state for tablet-only wrapper */
.tablet-related-topics {
  display: none;
}


/* 2. Tablet Viewport (Max 991px) - Hide Hero Image & Stack Columns */
@media (max-width: 991px) {
  :root {
    --container-padding: 32px;
    /* Tablet-optimized container padding */
  }

  .home-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .hero-image-container {
    display: none !important;
  }
}

/* 3. Mobile Viewport (Max 768px) */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    /* Mobile-optimized container padding */
  }

  .logo-container img {
    height: 32px !important;
  }

  .hero-topics-wrapper {
    background:
      radial-gradient(circle at 10% 45%, rgba(246, 114, 20, 0.05) 0%, transparent 35%),
      radial-gradient(circle at 90% 75%, rgba(251, 191, 36, 0.04) 0%, transparent 40%),
      linear-gradient(180deg, #ffffff 0%, #ffffff 30%, #fffdfb 55%, #ffffff 100%) !important;
  }

  .home-hero {
    padding: 130px 0 48px 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .topics-section {
    padding: 60px 0 15px 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .home-hero .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .section-header {
    text-align: left !important;
    margin-bottom: 32px !important;
  }

  .section-header h2 {
    font-size: clamp(26px, 7.5vw, 36px) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 10px !important;
  }

  .section-header p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hero-content {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .hero-content h1 {
    font-size: clamp(32px, 9.5vw, 44px) !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 16px !important;
  }

  .hero-content .hero-subtitle {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #5c5652 !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    max-width: 580px !important;
    text-align: left !important;
  }

  .hero-scroll-btn {
    width: max-content !important;
    max-width: none !important;
    justify-content: flex-start !important;
  }

  .topics-grid {
    grid-template-columns: 1fr;
    gap: 14px !important;
  }

  /* ── Mobile Section 2 Cards — Clean Modern Redesign ── */
  .topic-card {
    display: grid !important;
    grid-template-columns: 42px 1fr auto !important;
    grid-template-rows: auto auto auto !important;
    align-items: center !important;
    row-gap: 8px !important;
    column-gap: 14px !important;
    padding: 16px 18px !important;
    min-height: auto !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03) !important;
    overflow: hidden !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  }

  .topic-card:hover,
  .topic-card:active {
    border-color: rgba(246, 114, 20, 0.3) !important;
    box-shadow: 0 8px 24px rgba(246, 114, 20, 0.08) !important;
    transform: translateY(-2px) !important;
  }

  /* Header grid passthrough */
  .topic-card-header {
    display: contents !important;
  }

  /* Icon Tile */
  .topic-card-icon {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 11px !important;
    background: #fff7ed !important;
    border: 1px solid rgba(246, 114, 20, 0.12) !important;
    color: #f67214 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    transition: background 0.25s ease, color 0.25s ease !important;
  }

  .topic-card:hover .topic-card-icon {
    background: #f67214 !important;
    color: #ffffff !important;
    border-color: transparent !important;
  }

  /* Card Title */
  .topic-card-title {
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: 17.5px !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
    margin: 0 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    text-align: left !important;
    transition: color 0.25s ease !important;
  }

  .topic-card:hover .topic-card-title {
    color: #f67214 !important;
  }

  /* Pill Badge */
  .topic-card-badge {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    padding: 3px 10px !important;
    background: #fff7ed !important;
    border: 1px solid rgba(246, 114, 20, 0.15) !important;
    color: #ea580c !important;
    border-radius: 20px !important;
    white-space: nowrap !important;
    margin: 0 !important;
    transition: background 0.25s ease, color 0.25s ease !important;
  }

  .topic-card:hover .topic-card-badge {
    background: #f67214 !important;
    color: #ffffff !important;
    border-color: transparent !important;
  }

  .topic-card-desc {
    grid-column: 1 / span 3 !important;
    grid-row: 2 !important;
    font-size: 13px !important;
    color: #64748B !important;
    line-height: 1.45 !important;
    margin: 4px 0 8px 0 !important;
  }

  /* Footer Action Row */
  .topic-card-footer {
    grid-column: 1 / span 3 !important;
    grid-row: 3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 4px 0 0 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    background: transparent !important;
    transition: border-color 0.25s ease !important;
  }

  .topic-card-action {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    color: #f67214 !important;
    text-transform: uppercase !important;
  }

  .topic-card-arrow {
    color: #f67214 !important;
    display: flex !important;
    align-items: center !important;
  }

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

  .nav-links {
    display: none;
    /* Simple mobile navbar simplification */
  }

  .faq-page-header {
    padding: 32px 0;
  }

  .faq-title-area h1 {
    font-size: 28px;
  }

  /* Mobile Categories Scrollable Chips styling */
  .category-list {
    border-bottom: none;
  }

  .category-item button {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .category-item.active button {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF !important;
  }

  .category-item.active .cat-count {
    background-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
  }

  /* Compact FAQ spacing */
  .faq-header-btn {
    padding: 16px;
  }

  .faq-question-title {
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 16px;
  }

  .tablet-related-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .help-callout-card {
    padding: 32px 16px;
  }

  :root {
    --container-padding: 20px;
  }
}

/* ============================================================
   HEADER NAVIGATION STYLES
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 74.6px;
  min-height: 74.6px;
  padding: 0 74.6px;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-container img,
.site-logo {
  height: 40px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--color-primary);
}

.login-btn {
  background: #ea6d13;
  color: white !important;
  border: none;
  height: 47px;
  padding: 0 50px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(234, 109, 19, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 109, 19, 0.35);
  background: #d65d0f;
}

/* ============================================================
   HAMBURGER & MOBILE MENU OVERLAYS
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-main);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

.hamburger.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 20px;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast);
}

.mobile-menu ul li a:hover {
  color: var(--color-primary);
}

.mobile-menu .login-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px 32px;
}

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .site-header nav,
  .site-header .header-nav,
  .site-header .nav-menu,
  .site-header .login-btn,
  .d-flex.align-items-center.gap-4 {
    display: none !important;
  }

  .site-header {
    padding: 12px 20px;
    justify-content: space-between !important;
  }
}

/* ============================================================
   PRODUCT FOOTER STYLES - Matching Skills Page exactly
   ============================================================ */
.site-footer {
  background: #f8fafc !important;
  border-top: 1px solid #eaeaea !important;
  padding: 36px 0 11px !important;
  position: relative !important;
  z-index: 10 !important;
  font-family: 'Outfit', sans-serif !important;
  color: #334155 !important;
}

.site-footer a {
  text-decoration: none !important;
}

.site-footer .container,
.site-footer .footer-container {
  max-width: 1230px !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  width: 100% !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr !important;
  gap: 40px !important;
  align-items: start !important;
}

.footer-column {
  display: flex !important;
  flex-direction: column !important;
}

/* Brand Column styling */
.brand-column {
  align-items: flex-start !important;
}

.brand-column .footer-logo {
  margin-bottom: 8px !important;
  margin-left: -14px !important;
}

.brand-column .footer-logo img {
  height: 100px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: none !important;
  margin: 0 !important;
  display: block !important;
}

.brand-desc {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #1e293b !important;
  margin: 8px 0 16px !important;
  text-align: left !important;
}

/* Redesigned Social Row */
.social-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 15px !important;
}

.social-icon-circle {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #475569 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.social-icon-circle svg {
  width: 16px !important;
  height: 16px !important;
  transition: transform 0.3s ease !important;
}

.social-icon-circle:hover {
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

.linkedin-circle:hover {
  background: #0077b5 !important;
  border-color: #0077b5 !important;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.2) !important;
}

.youtube-circle:hover {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2) !important;
}

.x-circle:hover {
  background: #0f1419 !important;
  border-color: #0f1419 !important;
  box-shadow: 0 4px 12px rgba(15, 20, 25, 0.15) !important;
}

.instagram-circle:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.2) !important;
}

.facebook-circle:hover {
  background: #1877f2 !important;
  border-color: #1877f2 !important;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2) !important;
}

/* Link Columns (Skills, Company) */
.column-header,
.column-header-static {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #f67214 !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
}

.column-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.column-links li {
  display: flex !important;
  align-items: center !important;
}

.column-links a {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #0f172a !important;
  transition: all 0.25s ease !important;
  position: relative !important;
  padding-left: 18px !important;
  display: inline-block !important;
  text-align: left !important;
}

.column-links a::before {
  content: ">" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 11px !important;
  color: #64748b !important;
  transition: all 0.25s ease !important;
  font-family: monospace !important;
}

.column-links a:hover {
  color: #f67214 !important;
  padding-left: 22px !important;
}

.column-links a:hover::before {
  color: #f67214 !important;
  left: 4px !important;
}

/* Newsletter Column (Col 4) */
.newsletter-column {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

.newsletter-column .column-header-static {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #f67214 !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
}

.newsletter-col-desc {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #334155 !important;
  margin: -12px 0 16px 0 !important;
  font-family: 'Outfit', sans-serif !important;
}

.newsletter-col-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
}

.newsletter-input-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  padding: 0 40px 0 42px !important;
  height: 46px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
}

.newsletter-input-wrapper:hover {
  border-color: #94a3b8 !important;
}

.newsletter-input-wrapper:focus-within {
  border-color: #f67214 !important;
  box-shadow: 0 0 0 3.5px rgba(246, 114, 20, 0.12) !important;
}

.newsletter-input-wrapper:has(.newsletter-col-input:not(:placeholder-shown):valid) {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3.5px rgba(16, 185, 129, 0.12) !important;
}

.newsletter-input-wrapper .input-icon {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #94a3b8 !important;
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
  transition: color 0.3s ease !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.newsletter-input-wrapper:focus-within .input-icon {
  color: #f67214 !important;
}

.newsletter-input-wrapper:has(.newsletter-col-input:not(:placeholder-shown):valid) .input-icon {
  color: #10b981 !important;
}

.newsletter-col-input {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  width: 100% !important;
  height: 100% !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  font-family: 'Outfit', sans-serif !important;
  padding: 0 !important;
}

.newsletter-col-input::placeholder {
  color: #94a3b8 !important;
}

/* Live Validation Status CSS */
.newsletter-validation-status {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) scale(0.8) !important;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.val-check-icon {
  width: 14px !important;
  height: 14px !important;
  color: #10b981 !important;
}

.newsletter-col-input:focus:valid~.newsletter-validation-status,
.newsletter-col-input:not(:placeholder-shown):valid~.newsletter-validation-status {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
}

.newsletter-submit-btn {
  height: 46px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #f67214 0%, #ff832b 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(246, 114, 20, 0.15) !important;
  width: 100% !important;
}

.newsletter-submit-btn:hover:not(:disabled) {
  box-shadow: 0 6px 18px rgba(246, 114, 20, 0.25) !important;
  transform: translateY(-1.5px) !important;
}

.newsletter-submit-btn:hover:not(:disabled) .submit-btn-arrow {
  transform: translateX(3px) !important;
}

.newsletter-submit-btn:disabled {
  cursor: not-allowed !important;
  opacity: 0.9 !important;
}

.submit-btn-arrow {
  width: 14px !important;
  height: 14px !important;
  transition: transform 0.3s ease !important;
}

/* Success state for button */
.newsletter-submit-btn.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.20) !important;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Mobile-only Social Section */
.mobile-social-section {
  display: none !important;
  margin-top: 24px !important;
  text-align: center !important;
  width: 100% !important;
}

.mobile-social-header {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #f67214 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
  font-family: 'Outfit', sans-serif !important;
  text-align: center !important;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  margin-top: 40px !important;
  padding-top: 24px !important;
  border-top: 1px solid #eaeaea !important;
  text-align: center !important;
}

.copyright-text {
  font-size: 15.5px !important;
  font-weight: 500 !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  text-align: center !important;
}

.copyright-link {
  color: #f67214 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: opacity 0.25s ease !important;
}

.copyright-link:hover {
  opacity: 0.85 !important;
  text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 0 30px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 25px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .collapsible-column {
    border-bottom: 1px solid #f1f5f9 !important;
    padding-bottom: 15px !important;
  }

  .collapsible-column .column-header {
    margin-bottom: 0 !important;
    cursor: pointer !important;
    padding: 10px 0 !important;
    user-select: none !important;
  }

  .collapsible-column .column-header .accordion-icon {
    display: inline-block !important;
    width: 8px !important;
    height: 8px !important;
    border-right: 2px solid #f67214 !important;
    border-bottom: 2px solid #f67214 !important;
    transform: rotate(45deg) !important;
    transition: transform 0.3s ease !important;
    margin-right: 8px !important;
  }

  .collapsible-column.active .column-header .accordion-icon {
    transform: rotate(-135deg) !important;
  }

  .collapsible-column .column-links {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1) !important;
    gap: 10px !important;
    padding-left: 5px !important;
  }

  .collapsible-column.active .column-links {
    max-height: 1000px !important;
    transition: max-height 0.4s cubic-bezier(0.95, 0.05, 0.795, 0.035) !important;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
  }

  .brand-column {
    align-items: center !important;
    text-align: center !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding-bottom: 24px !important;
  }

  .brand-desc {
    text-align: center !important;
  }

  .brand-column .social-row {
    display: none !important;
  }

  .mobile-social-section {
    display: block !important;
  }

  .mobile-social-section .social-row {
    display: flex !important;
    justify-content: center !important;
    margin-top: 10px !important;
  }

  .footer-bottom-bar {
    margin-top: 30px !important;
    padding-top: 20px !important;
  }

  .copyright-text {
    font-size: 14px !important;
  }

  .newsletter-column {
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 24px !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: 15px !important;
  }

  .newsletter-col-desc {
    text-align: center !important;
    margin: 0 0 16px 0 !important;
  }

  .newsletter-col-form {
    max-width: 380px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
}

/* ============================================================
   PREMIUM WAITLIST MODAL CUSTOM STYLES
   ============================================================ */
.modal-content-premium {
  border: none !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15) !important;
  background: #ffffff !important;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.text-orange {
  color: var(--color-primary);
}

.modal-subtitle {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-top: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.premium-input {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1e293b;
  transition: all 0.3s ease;
  width: 100%;
  height: 48px;
  outline: none;
}

.premium-input:focus {
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(246, 114, 20, 0.1);
}

.btn-waitlist {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(246, 114, 20, 0.25);
}

.btn-waitlist:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(246, 114, 20, 0.35);
}

.modal-footer-text {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.5;
}

/* ITI telephone numbers input style overrides */
.iti {
  width: 100% !important;
  display: block !important;
}

.iti--allow-dropdown input {
  padding-left: 90px !important;
  height: 48px !important;
  border-radius: 12px !important;
  border: 2px solid #e2e8f0 !important;
  background: #f8fafc !important;
  font-size: 14px !important;
  width: 100% !important;
}

.iti--allow-dropdown input:focus {
  border-color: var(--color-primary) !important;
  background: white !important;
}

/* ============================================================
   FLOATING BUTTONS AND BACK-TO-TOP STYLES
   ============================================================ */
.float-waitlist-btn {
  display: none;
}

@media (max-width: 768px) {
  .float-waitlist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    padding: 0 24px;
    height: 46px;
    border-radius: 50px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(246, 114, 20, 0.4);
    white-space: nowrap;
  }
}

.back-to-top-btn {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff9040 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(246, 114, 20, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
}

.back-to-top-btn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top-btn svg {
  width: 20px;
  height: 20px;
}

.back-to-top-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(246, 114, 20, 0.4);
}

@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 85px;
    right: 20px;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
  }

  .faq-audio-expanded .back-to-top-btn {
    bottom: 135px !important;
    /* Float above mobile audio player deck */
  }
}


/* ============================================================
   FAQ Hero — Premium Ground-Up Redesign
   Inspired by: Stripe Docs · Linear · Apple Developer
   ============================================================ */

/* ── Core Shell ── */
.faq-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 16px) 0 19px;
  background: #FAFAFA;
  border-bottom: 1px solid #E8ECF0;
}

/* ── Animated Background Layer ── */
.faq-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Dot-grid texture */
.faq-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(246, 114, 20, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

/* Floating glow orbs */
.faq-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0;
  animation: heroOrbFadeIn 1.2s ease forwards;
}

.faq-hero__orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(246, 114, 20, 0.18) 0%, transparent 70%);
  top: -120px;
  left: -80px;
  animation-delay: 0s;
  animation: heroOrbFadeIn 1.2s ease forwards, floatA 22s ease-in-out infinite alternate;
}

.faq-hero__orb--2 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.10) 0%, transparent 70%);
  bottom: -100px;
  right: 5%;
  animation: heroOrbFadeIn 1.4s ease forwards, floatB 28s ease-in-out infinite alternate;
}

.faq-hero__orb--3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  top: 10px;
  right: 30%;
  animation: heroOrbFadeIn 1.6s ease forwards, floatC 18s ease-in-out infinite alternate;
}

@keyframes heroOrbFadeIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatA {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  100% {
    transform: translate(50px, 30px) scale(1.08);
  }
}

@keyframes floatB {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  100% {
    transform: translate(-60px, -20px) scale(0.95);
  }
}

@keyframes floatC {
  0% {
    transform: translate(0px, 0px);
  }

  100% {
    transform: translate(30px, -30px);
  }
}

/* ── Inner Layout ── */
.faq-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Breadcrumb ── */
.faq-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-light);
}

.faq-hero__breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.faq-hero__breadcrumb-link:hover {
  color: var(--color-primary);
}

.faq-hero__breadcrumb-sep {
  color: #CBD5E1;
  font-size: 13px;
}

.faq-hero__breadcrumb-current {
  color: var(--color-text-main);
  font-weight: 600;
}

/* ── Eyebrow pill ── */
.faq-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(246, 114, 20, 0.1) 0%, rgba(251, 191, 36, 0.08) 100%);
  border: 1px solid rgba(246, 114, 20, 0.2);
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 16px;
  animation: slideInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.faq-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(246, 114, 20, 0.2);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(246, 114, 20, 0.2);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(246, 114, 20, 0.1);
  }
}

/* ── Headline ── */
.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;

  /* Solid black */
  color: #0F172A;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;

  margin-bottom: 16px;
  animation: slideInUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
  display: inline-block;
}

.faq-hero__title-accent {
  display: inline;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  filter: none;
  animation: none;
  padding-right: 0;
}

.faq-hero__title-suffix {
  display: inline;
  font-weight: inherit;
  color: inherit;
  margin-left: 0;
  opacity: 1;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── Subtitle ── */
.faq-hero__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: #64748B;
  max-width: 640px;
  font-weight: 400;
  margin-bottom: 32px;
  animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.faq-hero__br-desktop {
  display: block;
}

/* ── Stats Row ── */
.faq-hero__stats {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.faq-hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 100px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.faq-hero__stat:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(246, 114, 20, 0.25);
  transform: translateY(-1px);
}

.faq-hero__stat-value {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.faq-hero__stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.faq-hero__stat-divider {
  display: none;
}

/* ── Entry animation ── */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq-hero {
    padding: calc(var(--header-height) + 24px) 0 28px;
    background: linear-gradient(135deg, #FFF9F5 0%, #FAFAFA 60%, #FFFFFF 100%);
  }

  .faq-hero__grid {
    opacity: 0.22 !important;
  }

  .faq-hero__orb--1 {
    width: 240px !important;
    height: 240px !important;
    background: radial-gradient(circle, rgba(246, 114, 20, 0.08) 0%, transparent 70%) !important;
    top: -40px !important;
    left: -40px !important;
  }

  .faq-hero__orb--2 {
    width: 200px !important;
    height: 200px !important;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%) !important;
    bottom: -60px !important;
    right: -20px !important;
  }

  .faq-hero__orb--3 {
    display: none !important;
  }

  .faq-hero__title {
    font-size: 28px;
  }

  .faq-hero__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .faq-hero__br-desktop {
    display: none;
  }

  .faq-hero__stats {
    flex-wrap: wrap;
    gap: 8px;
  }

  .faq-hero__stat {
    flex: unset;
    align-items: center;
    padding: 6px 14px;
  }

  .faq-hero__stat-value {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-hero__eyebrow {
    font-size: 10px;
  }

  .faq-hero__stat {
    padding: 0 6px;
  }

  .faq-hero__stat-label {
    font-size: 9.5px;
  }
}

/* ================================================================
   SCOPE-GAP PAGE — COMPREHENSIVE RESPONSIVE SYSTEM
   Breakpoints: 1024px (large tablet) · 768px (tablet) · 480px (mobile) · 360px (small mobile)
   ================================================================ */

/* ── Large Tablet (768px–1024px) — Show horizontal pill bar ── */
@media (max-width: 1024px) {

  /* Switch 3-col grid → 1-col: hide all sidebars, keep center content */
  .faq-body-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 24px 0;
  }

  /* Hide left sidebar wrapper, right sidebar, and tablet mobile related topics */
  .left-sidebar-wrapper,
  .left-column-sidebar,
  .right-column-sidebar,
  .tablet-related-topics {
    display: none !important;
  }

  /* Hide mobile dropdown on tablet — use horizontal bar instead */
  .mobile-category-dropdown {
    display: none !important;
  }

  /* Show horizontal Browse by Topic pill bar */
  .mobile-category-scroll {
    display: block !important;
  }

  /* ── Tablet Browse by Topic Header ── */
  .mobile-category-scroll::before {
    content: "Browse by Topic";
    display: block;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 10px;
  }

  /* Horizontal scrollable pill strip */
  .mobile-category-scroll .category-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Each pill item */
  .mobile-category-scroll .category-item {
    flex-shrink: 0 !important;
  }

  /* Each pill button */
  .mobile-category-scroll .category-item button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 7px 14px !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 20px !important;
    font-family: var(--font-body, 'Inter', sans-serif) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: all 0.15s ease !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02) !important;
  }

  /* Pill count badge */
  .mobile-category-scroll .category-item button .cat-count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    background: #F1F5F9 !important;
    color: #64748B !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
  }

  /* Active pill state */
  .mobile-category-scroll .category-item.active button {
    background: #F67214 !important;
    border-color: #F67214 !important;
    color: #FFFFFF !important;
    box-shadow: 0 2px 8px rgba(246, 114, 20, 0.22) !important;
  }

  .mobile-category-scroll .category-item.active button .cat-count {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #FFFFFF !important;
  }

  /* Pill hover for non-active */
  .mobile-category-scroll .category-item:not(.active) button:hover {
    border-color: #CBD5E1 !important;
    background: #F8FAFC !important;
    color: #0F172A !important;
  }

  /* ── Tablet Hero Section ── */
  .faq-hero {
    padding: calc(var(--header-height, 70px) + 32px) 0 36px;
    text-align: left;
  }

  .faq-hero__breadcrumb {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .faq-hero__eyebrow {
    font-size: 10.5px;
    margin-bottom: 14px;
  }

  .faq-hero__title {
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .faq-hero__subtitle {
    font-size: 15.5px;
    line-height: 1.65;
    color: #64748B;
    max-width: 580px;
    margin-bottom: 26px;
  }

  .faq-hero__br-desktop {
    display: none;
  }

  .faq-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .faq-hero__stat {
    padding: 6px 14px;
    font-size: 13.5px;
  }

  .faq-hero__stat-value {
    font-size: 15px;
  }

  .faq-hero__stat-label {
    font-size: 12.5px;
  }
}

/* ── Tablet (≤768px) — Switch to dropdown ── */
@media (max-width: 768px) {

  /* Hero */
  .faq-hero {
    padding: calc(var(--header-height) + 20px) 0 28px;
  }

  .faq-hero__title {
    font-size: 26px;
    letter-spacing: -0.025em;
  }

  .faq-hero__subtitle {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .faq-hero__br-desktop {
    display: none;
  }

  .faq-hero__breadcrumb {
    margin-bottom: 14px;
    font-size: 11px;
  }

  /* KPI Pills */
  .faq-hero__stats {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Switch to 1-column layout — stack everything */
  .faq-body-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  /* Hide both sidebars on mobile */
  .left-sidebar-wrapper,
  .left-column-sidebar,
  .right-column-sidebar,
  .tablet-related-topics {
    display: none !important;
  }

  /* Hide horizontal pill bar on mobile — use dropdown */
  .mobile-category-scroll {
    display: none !important;
  }

  /* Show mobile dropdown instead of category list */
  .mobile-category-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
    display: block !important;
  }

  .mobile-dropdown-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748B;
    margin-bottom: 8px;
    display: block;
    text-align: left;
  }

  .mobile-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #0F172A;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
    outline: none;
  }

  .mobile-dropdown-trigger:hover {
    border-color: #CBD5E1;
    background: #FAFAFA;
  }

  .mobile-dropdown-trigger:focus {
    border-color: #F67214;
    box-shadow: 0 0 0 3px rgba(246, 114, 20, 0.08), 0 1px 2px rgba(15, 23, 42, 0.02);
  }

  .mobile-dropdown-trigger .trigger-label {
    color: #64748B;
    font-weight: 500;
    margin-right: 5px;
  }

  .mobile-dropdown-trigger .trigger-value {
    font-weight: 600;
    color: #0F172A;
    flex: 1;
  }

  .mobile-dropdown-trigger .trigger-chevron {
    color: #94A3B8;
    transition: transform 0.2s ease;
  }

  .mobile-category-dropdown.is-open .mobile-dropdown-trigger .trigger-chevron {
    transform: rotate(180deg);
    color: #F67214;
  }

  /* Dropdown Menu list container */
  .mobile-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 5px;
    z-index: 100;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.08),
      0 6px 8px -6px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top center;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

  .mobile-category-dropdown.is-open .mobile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* Individual item buttons */
  .mobile-dropdown-menu .menu-item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.12s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-dropdown-menu .menu-item:hover {
    background: #F8FAFC;
    color: #0F172A;
  }

  .mobile-dropdown-menu .menu-item.active {
    background: rgba(246, 114, 20, 0.06);
    color: #F67214;
    font-weight: 600;
  }

  /* Search bar full width */
  .in-page-search {
    width: 100%;
  }

  /* FAQ Accordion */
  .faq-header-btn {
    padding: 16px;
    gap: 12px;
  }

  .faq-question-title {
    font-size: 14px;
    line-height: 1.45;
  }

  .faq-answer-inner {
    padding: 0 16px 16px;
  }

  .faq-answer-inner p,
  .faq-answer-inner li {
    font-size: 14px;
    line-height: 1.65;
  }

  /* Category label badge */
  .faq-category-label {
    font-size: 10px;
  }

  /* Key Takeaways box */
  .faq-key-takeaways {
    padding: 14px 16px;
  }

  .faq-key-takeaways li {
    font-size: 13px;
  }

  /* Related questions */
  .related-questions-section {
    padding: 12px 16px;
  }

  /* Body grid padding */
  .faq-body-grid {
    padding-bottom: 40px;
  }

  /* Container side padding */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {

  /* Hero */
  .faq-hero {
    padding: calc(var(--header-height) + 16px) 0 20px;
  }

  .faq-hero__title {
    font-size: 22px;
    line-height: 1.15;
  }

  .faq-hero__subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .faq-hero__breadcrumb {
    font-size: 10.5px;
    gap: 4px;
  }

  .faq-hero__stat {
    padding: 5px 11px;
  }

  .faq-hero__stat-value {
    font-size: 13px;
  }

  .faq-hero__stat-label {
    font-size: 11px;
  }

  /* Body grid */
  .faq-body-grid {
    gap: 16px;
    padding: 16px 0 36px;
  }

  /* Middle content gap */
  .middle-content {
    gap: 16px;
  }

  /* Accordion */
  .faq-header-btn {
    padding: 14px 12px;
  }

  .faq-question-title {
    font-size: 13.5px;
  }

  .faq-answer-inner {
    padding: 0 12px 14px;
  }

  .faq-answer-inner p {
    font-size: 13.5px;
  }

  /* Category chips */
  .mobile-category-scroll .category-item button {
    font-size: 12px;
    padding: 5px 12px;
  }

  /* Search */
  .in-page-search input {
    font-size: 14px;
    padding: 11px 14px 11px 38px;
  }

  /* Container */
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ── Small Mobile (≤360px) ── */
@media (max-width: 360px) {

  .faq-hero__title {
    font-size: 20px;
  }

  .faq-hero__subtitle {
    font-size: 12.5px;
  }

  .faq-hero__stat-value {
    font-size: 12px;
  }

  .faq-hero__stats {
    gap: 6px;
  }

  .faq-header-btn {
    padding: 12px 10px;
  }

  .faq-question-title {
    font-size: 13px;
  }

  .mobile-category-scroll .category-item button {
    font-size: 11.5px;
    padding: 4px 10px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ================================================================
   PREMIUM SIDEBAR REDESIGN
   Left: Category Nav · Right: Related Topics + Book Demo CTA
   Inspired by: Linear · Stripe Docs · Notion
   ================================================================ */

/* ── Left Sidebar Wrapper: stacks Browse by Topic + Waitlist card ── */
.left-sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

/* ── Left Sidebar: Category Navigation Container ── */
/* Sidebar Back to FAQ Home Button styling */
.sidebar-back-home-btn {
  display: inline-flex;
  align-items: center;
  color: #64748b;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  padding-left: 8px;
  /* Indent to match categories alignment */
}

.sidebar-back-home-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: 15px;
  margin-bottom: -4px;
}

.sidebar-back-home-btn:hover {
  color: #f97316;
  text-decoration: none;
}

.sidebar-back-home-btn svg {
  transition: transform 0.2s ease;
}

.sidebar-back-home-btn:hover svg {
  transform: translateX(-4px);
}

.left-column-sidebar {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.03);
}

.left-column-sidebar .category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px 0 0;
  margin: 0;
  max-height: min(480px, calc(100vh - 220px));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
}

/* Sleek WebKit Scrollbar Styling for Left Sidebar Categories */
.left-column-sidebar .category-list::-webkit-scrollbar {
  width: 5px;
}

.left-column-sidebar .category-list::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.left-column-sidebar .category-list::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 10px;
}

.left-column-sidebar .category-list::-webkit-scrollbar-thumb:hover {
  background: #F67214;
}

/* Section label */
.left-column-sidebar::before {
  content: 'Browse by Topic';
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94A3B8;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 12px;
}

.left-column-sidebar .category-item {
  position: relative;
  margin: 0;
  padding: 2px 0;
}

.left-column-sidebar .category-item:not(:last-child) {
  border-bottom: 1px solid #F1F5F9;
}

.left-column-sidebar .category-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: #64748B;
  text-align: left;
  transition: all 0.15s ease;
  background: transparent;
  gap: 8px;
  outline: none;
  border: none;
}

/* Hover state: clean soft orange background tint */
.left-column-sidebar .category-item button:hover {
  color: #F67214;
  background: rgba(246, 114, 20, 0.04);
}

/* Active state: beautiful clean orange background fill, bold text, NO vertical lines */
.left-column-sidebar .category-item.active button {
  color: #F67214;
  background: #FFF2E8;
  /* Soft brand orange fill */
  font-weight: 600;
}

.left-column-sidebar .cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  background: #F1F5F9;
  color: #64748B;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.left-column-sidebar .category-item button:hover .cat-count {
  background: rgba(246, 114, 20, 0.1);
  color: #F67214;
}

.left-column-sidebar .category-item.active .cat-count {
  background: #F67214;
  /* Solid orange count badge */
  color: #FFFFFF;
}

/* ── Right Sidebar: Related FAQ Topics ── */
.right-column-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-sidebar-section {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.03);
}

.right-sidebar-section h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  border-left: none;
  padding-left: 0;
}

.related-pages-list,
.related-topics-list {
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 !important;
  margin: 0 !important;
}

.related-page-item,
.related-topics-list li {
  list-style: none !important;
  position: relative;
  padding: 2px 0;
}

.related-page-item:not(:last-child),
.related-topics-list li:not(:last-child) {
  border-bottom: 1px solid #F1F5F9;
}

.related-page-item a,
.related-topics-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  transition: all 0.15s ease;
  gap: 8px;
  text-decoration: none;
}

.related-page-item a:hover,
.related-topics-list li a:hover {
  background: rgba(246, 114, 20, 0.04);
  color: #F67214;
  padding-left: 14px;
}

.related-page-item a.active,
.related-topics-list li a.active {
  background: rgba(246, 114, 20, 0.08);
  color: #F67214;
  font-weight: 600;
}

/* Hide original HTML &rarr; / &gt; arrow span */
.related-page-item a span,
.related-topics-list li a span {
  display: none !important;
}

/* Custom modern right angle bracket (>) */
.related-page-item a::after,
.related-topics-list li a::after {
  content: '>';
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  transition: all 0.15s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.related-page-item a:hover::after,
.related-topics-list li a:hover::after,
.related-page-item a.active::after,
.related-topics-list li a.active::after {
  color: #F67214;
  transform: translateX(2px);
  opacity: 1;
}


/* ── Join Waitlist CTA Card ── */
.sidebar-cta-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.03);
}

/* Remove orange top stripe */
.sidebar-cta-card::before {
  display: none;
}

/* Remove faint orb */
.sidebar-cta-card::after {
  display: none;
}

/* "Early Access" label above heading */
.sidebar-cta-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #F67214;
  background: rgba(246, 114, 20, 0.07);
  border: 1px solid rgba(246, 114, 20, 0.15);
  border-radius: 6px;
  padding: 2px 8px;
  margin-bottom: 10px;
}

/* Heading */
.sidebar-cta-card h5 {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

/* Body text */
.sidebar-cta-card p {
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* CTA Button */
.sidebar-cta-btn {
  display: block;
  width: 100%;
  background: #F67214;
  color: #FFFFFF;
  text-align: center;
  padding: 10px 0;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.18s ease;
  box-shadow: 0 2px 8px rgba(246, 114, 20, 0.22);
  cursor: pointer;
  border: none;
  outline: none;
}

.sidebar-cta-btn:hover {
  background: #E05F03;
  box-shadow: 0 4px 16px rgba(246, 114, 20, 0.32);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.sidebar-cta-btn:active {
  transform: translateY(0);
}


/* ── Hide Key Takeaways + Helpful/Copy Link from all FAQ answers ── */
.takeaways-box,
.faq-action-bar,
.faq-feedback-area,
.faq-feedback-label,
.feedback-btn,
.faq-share-area,
.share-action-btn {
  display: none !important;
}

/* ================================================================
   MOBILE OVERFLOW FIX — Prevents horizontal scroll on all phones
   ================================================================ */

/* Global overflow prevention */
html,
body {
  overflow-x: clip;
  max-width: 100vw;
}

/* All text wraps on mobile */
@media (max-width: 768px) {
  * {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Fix container at tablet — override the 175px desktop value */
  .faq-detail-page .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Body grid: single column, no overflow */
  .faq-detail-page .faq-body-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 20px 0 40px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  /* Hide both sidebars completely */
  .faq-detail-page .left-column-sidebar,
  .faq-detail-page .right-column-sidebar {
    display: none !important;
  }

  /* Hero section */
  .faq-detail-page .faq-hero {
    padding-top: calc(var(--header-height) + 16px) !important;
    padding-bottom: 20px !important;
  }

  /* Constrain hero title */
  .faq-hero__title {
    font-size: 24px !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  /* Accordion cards: no overflow */
  .faq-accordion {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* Accordion button: wrap text */
  .faq-header-btn {
    padding: 14px 16px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .faq-question-title {
    font-size: 14px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: break-word !important;
    min-width: 0 !important;
  }

  /* Answer inner text */
  .faq-answer-inner {
    padding: 16px !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .faq-answer-inner p,
  .faq-answer-inner li {
    font-size: 14px !important;
    line-height: 1.65 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }

  /* Search bar */
  .in-page-search {
    width: 100% !important;
    max-width: 100% !important;
  }

  .in-page-search input {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
  }

  /* Middle content */
  .middle-content {
    width: 100% !important;
    min-width: 0 !important;
    gap: 12px !important;
  }

  /* Related questions links */
  .related-questions-links a {
    word-break: break-word !important;
    display: block !important;
  }
}

/* ── iPhone / small mobile (≤480px) ── */
@media (max-width: 480px) {
  .faq-detail-page .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .faq-hero {
    padding: calc(var(--header-height) + 20px) 0 22px !important;
  }

  .faq-hero__title {
    font-size: 26px !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.2 !important;
    margin: 0 0 10px !important;
  }

  .faq-hero__subtitle {
    font-size: 13.5px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin: 0 0 16px !important;
  }

  .faq-hero__stats {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .faq-hero__stat {
    padding: 4px 10px !important;
    background: rgba(246, 114, 20, 0.04) !important;
    border: 1px solid rgba(246, 114, 20, 0.12) !important;
    border-radius: 6px !important;
    backdrop-filter: none !important;
  }

  .faq-hero__stat-value {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #F67214 !important;
  }

  .faq-hero__stat-label {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #475569 !important;
  }

  .faq-header-btn {
    padding: 12px 14px !important;
    gap: 10px !important;
  }

  .faq-question-title {
    font-size: 13px !important;
  }

  .faq-badge {
    font-size: 9px !important;
  }

  .faq-answer-inner {
    padding: 12px 14px !important;
  }

  /* Hide old scroll container */
  .mobile-category-scroll {
    display: none !important;
  }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .faq-detail-page .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .faq-hero__title {
    font-size: 18px !important;
  }

  .faq-question-title {
    font-size: 12.5px !important;
  }
}

/* ================================================================
   PREMIUM FAQ ACCORDION REDESIGN (SCOPED TO FAQ PAGE)
   Beautiful Stripe-docs inspired UI for Q&A system
   ================================================================ */

/* ── FAQ List Container ── */
.faq-detail-page .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Accordion Card ── */
.faq-detail-page .faq-accordion {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02) !important;
  position: relative !important;
}

.faq-detail-page .faq-accordion::before {
  display: none !important;
}

/* Hover state */
.faq-detail-page .faq-accordion:hover {
  border-color: #CBD5E1 !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02) !important;
  transform: translateY(-1px);
}

/* Expanded Active State */
.faq-detail-page .faq-accordion.is-expanded {
  border-color: #CBD5E1 !important;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05),
    0 8px 10px -6px rgba(15, 23, 42, 0.05) !important;
  transform: translateY(0);
}

/* ── Question Header Button ── */
.faq-detail-page .faq-header-btn {
  width: 100% !important;
  padding: 16px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  text-align: left !important;
  background: #FFFFFF !important;
  cursor: pointer !important;
  transition: padding 0.2s ease, background 0.2s ease !important;
  border: none !important;
  outline: none !important;
}

.faq-detail-page .faq-header-btn:hover {
  background: #FAFAFA !important;
}

.faq-detail-page .faq-accordion.is-expanded .faq-header-btn {
  background: #FFFFFF !important;
}

/* ── Header Text Area ── */
.faq-detail-page .faq-header-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ── Category Badge (overlaps top-left corner) ── */
.faq-detail-page .faq-badge {
  position: absolute !important;
  top: -1px !important;
  left: -1px !important;
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  font-family: var(--font-body) !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #475569 !important;
  background: #F1F5F9 !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 12px 0 12px 0 !important;
  padding: 5px 12px !important;
  line-height: 1.2 !important;
  transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

/* ── Question Title ── */
.faq-detail-page .faq-question-title {
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 540 !important;
  color: #0F172A !important;
  line-height: 1.4 !important;
  letter-spacing: -0.018em !important;
  margin: 0 !important;
  word-break: break-word !important;
  transition: color 0.2s ease !important;
}

.faq-detail-page .faq-accordion:hover .faq-question-title {
  color: #0F172A !important;
}

.faq-detail-page .faq-accordion.is-expanded .faq-question-title {
  color: #0F172A !important;
}

/* ── Chevron Icon ── */
.faq-detail-page .faq-chevron-icon {
  flex-shrink: 0 !important;
  width: 20px !important;
  height: 20px !important;
  color: #94A3B8 !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease !important;
}

.faq-detail-page .faq-accordion.is-expanded .faq-chevron-icon {
  transform: rotate(180deg) !important;
  color: #F67214 !important;
}

/* ── Accordion Content Wrapper (CSS grid transition) ── */
.faq-detail-page .faq-accordion-content-wrapper {
  display: grid !important;
  grid-template-rows: 0fr !important;
  transition: grid-template-rows 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
}

.faq-detail-page .faq-accordion.is-expanded .faq-accordion-content-wrapper {
  grid-template-rows: 1fr !important;
}

/* ── Content Inner ── */
.faq-detail-page .faq-accordion-content {
  min-height: 0 !important;
  overflow: hidden !important;
  background-color: #F8FAFC !important;
  border-top: 1px solid #E2E8F0 !important;
}

/* ── Answer Inner ── */
.faq-detail-page .faq-answer-inner {
  padding: 24px 28px !important;
  box-sizing: border-box !important;
}

/* ── Answer Typography ── */
.faq-detail-page .faq-answer-inner p {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #334155 !important;
  margin-bottom: 16px !important;
  font-weight: 400 !important;
}

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

.faq-detail-page .faq-answer-inner ul,
.faq-detail-page .faq-answer-inner ol {
  padding-left: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
}

.faq-detail-page .faq-answer-inner li {
  font-size: 15.5px !important;
  line-height: 1.65 !important;
  color: #334155 !important;
}

/* ── Related Questions Section ── */
.faq-detail-page .related-questions {
  margin-top: 20px !important;
  padding-top: 16px !important;
  border-top: 1px dashed #E2E8F0 !important;
  display: block !important;
}

.faq-detail-page .related-title {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #94A3B8 !important;
  margin-bottom: 8px !important;
}

.faq-detail-page .related-question-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #F67214 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.faq-detail-page .related-question-link::after {
  content: '→' !important;
  font-size: 12px !important;
  transition: transform 0.2s ease !important;
}

.faq-detail-page .related-question-link:hover {
  color: #E05F03 !important;
  gap: 8px !important;
}

.faq-detail-page .related-question-link:hover::after {
  transform: translateX(3px) !important;
}

/* ── Mobile Responsive — FAQ Accordion ── */
@media (max-width: 768px) {
  .faq-detail-page .faq-list {
    gap: 10px;
  }

  .faq-detail-page .faq-accordion {
    border-radius: 10px !important;
  }

  .faq-detail-page .faq-header-btn {
    padding: 28px 20px 14px 20px !important;
  }

  .faq-detail-page .faq-badge {
    border-radius: 10px 0 10px 0 !important;
  }

  .faq-detail-page .faq-question-title {
    font-size: 15px !important;
  }

  .faq-detail-page .faq-answer-inner {
    padding: 20px !important;
  }

  .faq-detail-page .faq-answer-inner p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 480px) {
  .faq-detail-page .faq-accordion {
    border-radius: 8px !important;
  }

  .faq-detail-page .faq-header-btn {
    padding: 26px 16px 12px 16px !important;
    gap: 12px !important;
  }

  .faq-detail-page .faq-question-title {
    font-size: 14px !important;
  }

  .faq-detail-page .faq-badge {
    font-size: 9px !important;
    padding: 4px 10px !important;
    border-radius: 8px 0 8px 0 !important;
  }

  .faq-detail-page .faq-answer-inner {
    padding: 16px !important;
  }

  .faq-detail-page .faq-answer-inner p {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }
}

/* ── Sticky Search Bar ── */
.faq-detail-page .in-page-search {
  position: sticky !important;
  top: calc(var(--header-height) - 10px) !important;
  z-index: 200 !important;
  width: 100% !important;
  margin-bottom: 12px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08) !important;
  padding: 6px !important;
  transition: box-shadow 0.2s ease !important;
}

.faq-detail-page .in-page-search input {
  width: 100% !important;
  padding: 10px 16px 10px 42px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: #0F172A !important;
  background-color: #FFFFFF !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05) !important;
}

.faq-detail-page .in-page-search input::placeholder {
  color: #94A3B8 !important;
}

.faq-detail-page .in-page-search input:focus {
  border-color: #F67214 !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0 3px rgba(246, 114, 20, 0.1), 0 1px 2px rgba(15, 23, 42, 0.02) !important;
  outline: none !important;
}

.faq-detail-page .search-icon-svg {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #94A3B8 !important;
  pointer-events: none !important;
  width: 18px !important;
  height: 18px !important;
  transition: color 0.2s ease !important;
}

.faq-detail-page .in-page-search input:focus+.search-icon-svg {
  color: #F67214 !important;
}

/* ── Hide Join Waitlist card on mobile ── */
@media (max-width: 900px) {
  .sidebar-cta-card {
    display: none !important;
  }
}

/* ── Related Question Navigation Highlight Pulse ── */
@keyframes faqHighlightPulse {
  0% {
    border-color: #F67214 !important;
    box-shadow: 0 0 0 4px rgba(246, 114, 20, 0.18) !important;
  }

  50% {
    border-color: #F67214 !important;
    box-shadow: 0 0 0 6px rgba(246, 114, 20, 0.25) !important;
  }

  100% {
    border-color: #CBD5E1 !important;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05) !important;
  }
}

.faq-detail-page .faq-accordion.highlight-pulse {
  animation: faqHighlightPulse 1.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ── Premium FAQ List Pagination ── */
.faq-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  margin-bottom: 8px;
}

.faq-pagination .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s ease;
  outline: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}

.faq-pagination .page-btn:hover:not(:disabled):not(.disabled) {
  border-color: #CBD5E1;
  background: #F8FAFC;
  color: #0F172A;
}

.faq-pagination .page-btn.num-btn {
  width: 36px;
  height: 36px;
  padding: 0;
}

.faq-pagination .page-btn.active {
  background: #F67214 !important;
  border-color: #F67214 !important;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(246, 114, 20, 0.22);
}

.faq-pagination .page-btn.prev-btn svg,
.faq-pagination .page-btn.next-btn svg {
  color: inherit;
}

.faq-pagination .page-btn:disabled,
.faq-pagination .page-btn.disabled {
  opacity: 0.45;
  background: #F8FAFC;
  border-color: #E2E8F0;
  color: #94A3B8;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Hero Split Layout ── */
.faq-hero__content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.faq-hero__text-side {
  flex: 1;
  max-width: 62%;
}

.faq-hero__image-side {
  flex: 0 0 34%;
  max-width: 34%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
}

.faq-hero__image-side::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(246, 114, 20, 0.12) 0%, rgba(251, 191, 36, 0.06) 50%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.faq-hero__image {
  max-width: 90%;
  height: auto;
  opacity: 0.38;
  -webkit-mask-image: radial-gradient(circle, black 50%, transparent 100%);
  mask-image: radial-gradient(circle, black 50%, transparent 100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.faq-hero__image:hover {
  transform: translateY(-6px) scale(1.02);
  opacity: 0.6;
}

@media (max-width: 991px) {
  .faq-hero__content-row {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 32px;
  }

  .faq-hero__text-side,
  .faq-hero__image-side {
    max-width: 100%;
    width: 100%;
    flex: none;
  }

  .faq-hero__image-side {
    display: none;
  }
}

/* ==========================================================================
   FAQ Read Aloud TTS Audio Player Styles
   ========================================================================== */
.faq-hero-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border: 1px solid rgba(246, 114, 20, 0.35);
  padding: 8px 18px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 16px;
  outline: none;
}

.faq-hero-listen-btn:hover {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-color: rgba(246, 114, 20, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.faq-audio-player-wrapper {
  position: fixed;
  bottom: 30px;
  /* Floats below the back-to-top button */
  right: 30px;
  z-index: 9990;
  font-family: var(--font-body);
}

/* Mini Floating Trigger Button */
.faq-audio-mini-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border: 1px solid rgba(246, 114, 20, 0.35);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5), 0 0 20px rgba(246, 114, 20, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-audio-mini-btn:hover {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-color: rgba(246, 114, 20, 0.6);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.6), 0 0 25px rgba(246, 114, 20, 0.35);
}

.faq-audio-mini-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #f8fafc;
}

/* Audio Equalizer Bar Animation */
.faq-audio-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

.faq-audio-equalizer span {
  width: 3px;
  background: linear-gradient(180deg, #ff8c37 0%, #f97316 100%);
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(246, 114, 20, 0.6);
  transition: height 0.3s ease;
}

.faq-audio-equalizer span:nth-child(1) {
  height: 6px;
}

.faq-audio-equalizer span:nth-child(2) {
  height: 12px;
}

.faq-audio-equalizer span:nth-child(3) {
  height: 8px;
}

/* Animate only when audio is actively playing */
.faq-audio-player-wrapper.playing .faq-audio-equalizer span {
  animation: faqEqualizerBounce 1.2s infinite ease-in-out alternate;
}

.faq-audio-player-wrapper.playing .faq-audio-equalizer span:nth-child(2) {
  animation-delay: 0.25s;
}

.faq-audio-player-wrapper.playing .faq-audio-equalizer span:nth-child(3) {
  animation-delay: 0.45s;
}

@keyframes faqEqualizerBounce {
  0% {
    height: 4px;
  }

  100% {
    height: 14px;
  }
}

/* Expanded Audio Control Deck */
.faq-audio-deck {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 420px;
  max-width: calc(100vw - 32px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.97) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(246, 114, 20, 0.5);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 25px rgba(246, 114, 20, 0.15);
  animation: faqDeckSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes faqDeckSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.faq-audio-player-wrapper.expanded .faq-audio-mini-btn {
  display: none;
}

.faq-audio-player-wrapper.expanded .faq-audio-deck {
  display: block;
}

/* Deck Header & Progress Bar */
.faq-audio-deck-header {
  margin-bottom: 14px;
  position: relative;
}

.faq-audio-progress-tooltip {
  display: none;
  position: absolute;
  bottom: 18px;
  /* Sit right above progress bar */
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(246, 114, 20, 0.35);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  pointer-events: none;
  z-index: 1100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.faq-audio-progress-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.96) transparent transparent transparent;
}

.faq-audio-deck-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.faq-audio-deck-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f97316;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: none;
}

.faq-audio-pulse-dot {
  width: 5px;
  height: 5px;
  background-color: #f97316;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #f97316;
  animation: faqAudioBadgePulse 1.6s infinite ease-in-out;
}

@keyframes faqAudioBadgePulse {

  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 8px #f97316;
  }
}

.faq-audio-deck-status {
  font-size: 11.5px;
  font-weight: 500;
  color: #cbd5e1;
}

.faq-audio-progress-bar-bg {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  position: relative;
  transition: height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-audio-progress-bar-bg:hover {
  height: 9px;
}

.faq-audio-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f97316 0%, #ff8c37 100%);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(246, 114, 20, 0.6);
  transition: width 0.25s ease;
}

/* Controls Layout */
.faq-audio-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.faq-audio-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f1f5f9;
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-audio-btn.text-icon-btn {
  padding: 7px 10px;
  font-size: 11px;
  white-space: nowrap;
}

.faq-audio-btn:hover {
  background: rgba(246, 114, 20, 0.2);
  border-color: rgba(246, 114, 20, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.faq-audio-btn.primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(246, 114, 20, 0.5);
  color: #ffffff;
}

.faq-audio-btn.primary:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(246, 114, 20, 0.7);
}

.faq-audio-btn.icon-only {
  width: 34px;
  height: 34px;
  min-width: 34px;
  padding: 0;
  border-radius: 50%;
}

.faq-audio-btn.close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
}

.faq-audio-dropdown-wrapper {
  position: relative;
}

.faq-audio-dropdown {
  display: none;
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f172a;
  border: 1px solid rgba(246, 114, 20, 0.35);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
  z-index: 100;
  min-width: 95px;
}

.faq-audio-dropdown.active {
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation: faqDropdownFadeIn 0.2s ease-out;
}

@keyframes faqDropdownFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 8px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.speed-option,
.voice-option {
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.speed-option:hover,
.voice-option:hover,
.speed-option.active,
.voice-option.active {
  background: rgba(246, 114, 20, 0.25);
  color: #f97316;
  font-weight: 700;
}

/* Active Highlight of Spoken FAQ Box */
.faq-accordion.reading-highlight {
  border-color: #F67214 !important;
  box-shadow: 0 0 0 3.5px rgba(246, 114, 20, 0.2), var(--shadow-sm) !important;
  transition: all 0.3s ease !important;
}

/* Active Highlight of Spoken FAQ Question Title */
.faq-question-title.reading-highlight-text {
  background: linear-gradient(120deg, #ffedd5 0%, #fed7aa 100%) !important;
  color: #0f172a !important;
  border-radius: 4px;
  padding: 2px 6px !important;
  box-shadow: 0 0 0 2px rgba(246, 114, 20, 0.25) !important;
  transition: all 0.3s ease !important;
  display: inline-block;
}

/* Active Highlight of Spoken FAQ Answer sentence */
.faq-voice-sentence.reading-highlight-text {
  background: linear-gradient(120deg, #ffedd5 0%, #fed7aa 100%) !important;
  color: #0f172a !important;
  border-radius: 4px;
  padding: 2px 4px !important;
  box-shadow: 0 0 0 2px rgba(246, 114, 20, 0.25) !important;
  transition: all 0.25s ease !important;
  display: inline;
}

@media (max-width: 768px) {
  .faq-audio-player-wrapper {
    bottom: 20px;
    /* Floats below mobile back-to-top button */
    right: 20px;
  }

  .faq-audio-player-wrapper.expanded {
    bottom: 0;
    right: 0;
  }

  .faq-audio-mini-btn {
    padding: 9px 16px;
    gap: 8px;
  }

  .faq-audio-mini-text {
    font-size: 12px;
  }

  .faq-audio-deck {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 14px 16px 12px 16px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.65), 0 0 20px rgba(246, 114, 20, 0.2);
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   Subpage Entry Animations (Breadcrumb, Header, Sidebars, Main FAQ accordion)
   ========================================================================== */
@keyframes subpageHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subpageHeroImageFadeIn {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.98);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes subpageLayoutFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations to subpage elements on load */
.faq-hero__inner>* {
  animation: subpageHeroFadeIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.faq-hero__inner .breadcrumb {
  animation-delay: 0.05s;
}

.faq-hero__inner h1 {
  animation-delay: 0.12s;
}

.faq-hero__inner .faq-hero__subtitle {
  animation-delay: 0.2s;
}

.faq-hero__inner .faq-hero__stats {
  animation-delay: 0.28s;
}

.faq-hero__image-side {
  animation: subpageHeroImageFadeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.15s;
}

.faq-layout-sidebar {
  animation: subpageLayoutFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.35s;
}

.faq-layout-main {
  animation: subpageLayoutFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.42s;
}

.faq-layout-right {
  animation: subpageLayoutFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.5s;
}

/* Q&A Accordion Box filter transition animations */
@keyframes faqBoxReveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.faq-accordion.reveal-anim {
  animation: faqBoxReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Responsive adjustments for audio player tooltip on mobile screen */
@media (max-width: 576px) {
  .faq-audio-progress-tooltip {
    left: 50% !important;
    transform: translateX(-50%) !important;
    white-space: normal !important;
    width: calc(100% - 24px) !important;
    max-width: none !important;
    text-align: center;
    box-sizing: border-box;
    bottom: 22px !important;
    /* Sit beautifully above progress bar */
  }

  .faq-audio-progress-tooltip::after {
    display: none !important;
  }
}

/* ── Hide topic badge when a specific category is filtered ── */
.middle-content.category-filtered .faq-badge {
  display: none !important;
}

.middle-content:not(.category-filtered) .faq-badge {
  display: inline-flex !important;
}

/* ── Only when category is NOT filtered (All Questions view): add top padding to make room for badge ── */
.middle-content:not(.category-filtered) .faq-header-btn {
  padding: 30px 20px 16px 20px !important;
}

/* ── On mobile screens: only add top padding when category is NOT filtered ── */
@media (max-width: 480px) {
  .middle-content:not(.category-filtered) .faq-header-btn {
    padding: 26px 16px 12px 16px !important;
  }
}

/* ── Desktop & Tablet: Top Column Alignment ── */
@media (min-width: 769px) {
  .faq-detail-page .left-sidebar-wrapper {
    position: sticky !important;
    padding-top: 36px !important;
    /* leaves space for absolute back button */
  }

  .faq-detail-page .right-column-sidebar {
    padding-top: 36px !important;
  }

  .faq-detail-page .middle-content {
    margin-top: 36px !important;
  }

  .faq-detail-page .sidebar-back-home-btn {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    color: #64748b !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px) !important;
    height: 20px !important;
    margin: 0 !important;
    padding: 0 0 0 8px !important;
    z-index: 10 !important;
  }

  .faq-detail-page .sidebar-back-home-btn.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
}