/* ============================================================
   MR.DENIM — FAQ Premium Styles (Dark Theme)
   Inspired by: Loro Piana · Brunello Cucinelli · Maison Margiela
   ============================================================ */

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes heroImgReveal {
  from { transform: scale(1.15) translateX(-20px); }
  to   { transform: scale(1) translateX(0); }
}

@keyframes heroPanelSlide {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

@keyframes goldLineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes heroTextMask {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBobble {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Override body background to black specifically for FAQ page */
body.faq-page {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Navigation overrides for dark theme FAQ page */
.faq-page .main-nav.scrolled {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.faq-page .main-nav.scrolled .nav-logo,
.faq-page .main-nav.scrolled .nav-link,
.faq-page .main-nav.scrolled .nav-icon-btn {
  color: var(--color-white) !important;
}

.faq-page .main-nav.scrolled .nav-link:hover,
.faq-page .main-nav.scrolled .nav-icon-btn:hover {
  color: var(--color-gold) !important;
}

/* ══════════════════════════════════════════
   HERO — SPLIT-SCREEN EDITORIAL
══════════════════════════════════════════ */
.faq-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

/* ── LEFT PANEL: IMAGE ── */
.faq-hero-image-panel {
  position: relative;
  overflow: hidden;
  background: #111;
  clip-path: inset(0 100% 0 0);
  animation: heroPanelSlide 1.2s cubic-bezier(0.76, 0, 0.24, 1) 0.1s forwards;
}

.faq-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.15);
  animation: heroImgReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  will-change: transform;
}

.faq-hero-image-panel::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 175, 55, 0.5) 30%,
    rgba(212, 175, 55, 0.8) 50%,
    rgba(212, 175, 55, 0.5) 70%,
    transparent 100%
  );
  z-index: 2;
}

.faq-hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 40%);
  z-index: 1;
  pointer-events: none;
}

.faq-hero-badge {
  position: absolute;
  bottom: 48px;
  left: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 1.4s forwards;
}

.faq-hero-badge-year {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.faq-hero-badge-name {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── RIGHT PANEL: TEXT ── */
.faq-hero-text-panel {
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  overflow: hidden;
}

.faq-hero-text-panel::before {
  content: 'FAQ';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 28vw;
  font-weight: 300;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.faq-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.faq-hero-eyebrow-line {
  display: block;
  height: 1px;
  width: 48px;
  background: var(--color-gold);
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  animation: goldLineGrow 0.8s var(--ease-luxury, cubic-bezier(0.25,0.46,0.45,0.94)) 1s forwards;
}

.faq-hero-label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  animation: heroFadeUp 0.7s ease 1.1s forwards;
}

.faq-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.5vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 36px;
  overflow: hidden;
}

.faq-hero-headline-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.faq-hero-headline-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease;
}

.faq-hero-headline em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,0.9);
  text-stroke: 1px rgba(212,175,55,0.9);
}

.faq-hero-rule {
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 36px;
  transition: width 1s ease 1.6s;
}

.faq-hero-subtitle {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.7s forwards;
  letter-spacing: 0.02em;
}

.faq-hero-pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 1.9s forwards;
}

.faq-hero-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}

.faq-hero-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.faq-hero-pill-text {
  color: rgba(255,255,255,0.5);
  width: 65px;
}

.faq-hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 2.2s forwards;
}

.faq-hero-scroll-dot {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-hero-scroll-dot-inner {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: scrollBobble 1.8s ease-in-out infinite;
}

.faq-hero-scroll-label {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.faq-stats {
  background: var(--color-black);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 48px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.faq-stat {
  text-align: center;
  padding: 24px 40px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.faq-stat.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-stat + .faq-stat {
  border-left: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.faq-stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
}

/* ══════════════════════════════════════════
   MAIN LAYOUT (Two-Column)
══════════════════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding: 120px 80px;
  align-items: start;
}

/* ── INFO COLUMN (Sticky) ── */
.faq-info-col {
  padding-right: 80px;
  position: sticky;
  top: 120px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.faq-info-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.faq-section-tag::before,
.faq-section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.faq-section-tag span {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 28px;
}

.faq-title em {
  font-style: italic;
  color: var(--color-gold);
}

.faq-desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 440px;
  font-weight: 300;
}

.faq-desc p {
  margin-bottom: 1.5em;
}

/* Sidebar Nav */
.faq-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.faq-nav-btn {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-align: left;
  padding: 12px 16px;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s var(--ease-luxury);
  position: relative;
  width: 100%;
  background: transparent;
  cursor: pointer;
}

.faq-nav-btn:hover {
  color: var(--color-white);
  background-color: rgba(255,255,255,0.03);
}

.faq-nav-btn.active {
  color: var(--color-gold);
  border-left-color: var(--color-gold);
  background-color: rgba(212, 175, 55, 0.05);
}

.faq-contact-assistance {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-assistance-label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.faq-btn {
  display: inline-block;
}

/* ── FEATURES COLUMN (Scrolling) ── */
.faq-features-col {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out) 0.15s, transform 0.9s var(--ease-out) 0.15s;
}

.faq-features-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-features-wrapper {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.faq-features-wrapper::before,
.faq-features-wrapper::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}

.faq-features-wrapper::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
}

.faq-features-wrapper::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
}

.faq-features-header {
  padding: 48px 56px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-search-box {
  position: relative;
  max-width: 100%;
}

.faq-search-input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  font-family: var(--font-ui);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  background: transparent;
  outline: none;
  color: var(--color-white);
  transition: border-color 0.3s;
}

.faq-search-input:focus {
  border-color: var(--color-gold);
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.4);
}

.faq-features-list {
  padding: 0 56px 48px;
}

/* Content Panels */
.faq-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  animation: faqPanelFadeIn 0.6s var(--ease-luxury) forwards;
}

.faq-panel.active {
  display: block;
}

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

.faq-panel-header {
  padding: 36px 0 24px;
}

.faq-features-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 10px;
}

.faq-features-subtitle {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Accordion list */
.faq-list {
  /* Remove border top since header handles spacing now */
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.faq-q {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  transition: color 0.3s var(--ease-luxury);
}

.faq-q:hover {
  color: var(--color-gold);
}

.faq-q svg {
  transition: transform 0.3s var(--ease-luxury);
  color: var(--color-warm-gray);
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-luxury), margin-top 0.4s;
}

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

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

.faq-a a {
  color: var(--color-gold);
  text-decoration: underline;
}

.faq-item.open .faq-a {
  max-height: 500px;
  margin-top: 16px;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.faq-no-results {
  display: none;
  text-align: center;
  padding: 40px 0;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-ui);
}

/* cg-btn-outline */
.cg-btn-outline {
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cg-btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

/* Support Strip */
.faq-support-strip {
  background: #111;
  color: var(--color-white);
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-support-strip h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 24px;
}

.faq-support-strip p {
  font-family: var(--font-ui);
  color: rgba(255,255,255,0.4);
  max-width: 600px;
  margin: 0 auto 40px;
}

.faq-support-btn {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.faq-support-btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .faq-layout {
    padding: 100px 60px;
    gap: 0;
  }
  .faq-info-col {
    padding-right: 60px;
  }
}

@media (max-width: 1024px) {
  .faq-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
    min-height: auto;
  }
  .faq-hero-image-panel {
    height: 55vh;
  }
  .faq-hero-text-panel {
    padding: 56px 40px 48px;
    min-height: auto;
  }
  
  .faq-stats {
    padding: 32px 40px;
  }
  
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 40px;
  }
  .faq-info-col {
    position: relative;
    top: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .faq-stats {
    grid-template-columns: 1fr;
  }
  .faq-stat + .faq-stat {
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }
  .faq-layout {
    padding: 60px 20px;
  }
  .faq-features-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    border-left: none;
    border-right: none;
  }
  .faq-features-header, .faq-features-list {
    padding-left: 20px;
    padding-right: 20px;
  }
  .faq-hero-text-panel {
    padding: 40px 20px;
  }
  .faq-hero-headline {
    font-size: 3rem;
  }
}


/* ══════════════════════════════════════════
   LIGHT MODE OVERRIDES FOR FAQ PAGE
   (Enforcing FULL BLACK text)
══════════════════════════════════════════ */
html.light-mode body.faq-page {
  background-color: #FFF;
  color: #000;
}

html.light-mode .faq-page .main-nav.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) !important;
}

html.light-mode .faq-page .main-nav.scrolled .nav-logo,
html.light-mode .faq-page .main-nav.scrolled .nav-link,
html.light-mode .faq-page .main-nav.scrolled .nav-icon-btn {
  color: #000 !important;
}

html.light-mode .faq-page .main-nav.scrolled .nav-link:hover,
html.light-mode .faq-page .main-nav.scrolled .nav-icon-btn:hover {
  color: var(--color-gold) !important;
}

html.light-mode .faq-hero {
  background: #FFF;
}

html.light-mode .faq-hero-image-panel {
  background: #FAFAFA;
}

html.light-mode .faq-hero-image-panel::before {
  background:
    linear-gradient(to right,  rgba(255,255,255,0) 60%, rgba(255,255,255,0.6) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 40%);
}

html.light-mode .faq-hero-badge-year {
  color: #000;
  font-weight: 500;
}

html.light-mode .faq-hero-badge-name {
  color: #000;
  font-weight: 500;
}

html.light-mode .faq-hero-text-panel {
  background: #FFF;
}

html.light-mode .faq-hero-text-panel::before {
  color: rgba(0,0,0,0.03);
}

html.light-mode .faq-hero-headline {
  color: #000;
}

html.light-mode .faq-hero-rule {
  background: rgba(0,0,0,0.1);
}

html.light-mode .faq-hero-subtitle {
  color: #000;
  font-weight: 400;
}

html.light-mode .faq-hero-pill-text {
  color: #000;
  font-weight: 500;
}

html.light-mode .faq-hero-pill-val {
  color: #000;
}

html.light-mode .faq-hero-scroll-label {
  color: #000;
  font-weight: 500;
}

html.light-mode .faq-stats {
  background: #FAFAFA;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

html.light-mode .faq-stat + .faq-stat {
  border-left: 1px solid rgba(0,0,0,0.1);
}

html.light-mode .faq-stat-label {
  color: #000;
  font-weight: 500;
}

html.light-mode .faq-stat-number {
  color: var(--color-gold);
}

html.light-mode .faq-title {
  color: #000;
}

html.light-mode .faq-desc {
  color: #000;
  font-weight: 400;
}

html.light-mode .faq-assistance-label {
  color: #000;
}

html.light-mode .faq-contact-assistance {
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Sidebar nav light mode overrides */
html.light-mode .faq-nav-btn {
  color: #000;
  border-left-color: rgba(0,0,0,0.1);
}

html.light-mode .faq-nav-btn:hover {
  color: #000;
  background-color: rgba(0,0,0,0.03);
  font-weight: 500;
}

html.light-mode .faq-nav-btn.active {
  color: var(--color-gold);
  border-left-color: var(--color-gold);
  background-color: rgba(184, 150, 90, 0.1);
  font-weight: 500;
}

html.light-mode .faq-features-wrapper {
  background: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.1);
}

html.light-mode .faq-features-header {
  border-bottom: 1px solid rgba(0,0,0,0.1) !important;
}

html.light-mode .faq-search-input {
  border: 1px solid rgba(0,0,0,0.2);
  color: #000;
}

html.light-mode .faq-search-input::placeholder {
  color: rgba(0,0,0,0.5);
}

html.light-mode .faq-search-icon {
  color: #000;
}

html.light-mode .faq-features-title {
  color: #000;
}

html.light-mode .faq-features-subtitle {
  color: #000;
  font-weight: 500;
}

html.light-mode .faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

html.light-mode .faq-q {
  color: #000;
  font-weight: 400;
}

html.light-mode .faq-q svg {
  color: #000;
}

html.light-mode .faq-q:hover {
  color: var(--color-gold);
}

html.light-mode .faq-item.open .faq-q svg {
  color: var(--color-gold);
}

html.light-mode .faq-a {
  color: #000;
  font-weight: 400;
}

html.light-mode .faq-no-results {
  color: #000;
}

html.light-mode .cg-btn-outline {
  color: #000;
  border-color: rgba(0,0,0,0.3);
}

html.light-mode .cg-btn-outline:hover {
  background: #000;
  color: #FFF;
  border-color: #000;
}

html.light-mode .faq-support-strip {
  background: #FAFAFA;
  color: #000;
  border-top: 1px solid rgba(0,0,0,0.1);
}

html.light-mode .faq-support-strip h2 {
  color: #000;
}

html.light-mode .faq-support-strip p {
  color: #000;
}

html.light-mode .faq-support-btn {
  color: #000;
  border-color: rgba(0,0,0,0.3);
}

html.light-mode .faq-support-btn:hover {
  background: #000;
  color: #FFF;
  border-color: #000;
}
