/* ==========================================================================
   OhMyShot Landing Page - Component Styles
   ========================================================================== */

/* ==========================================================================
   Glassmorphism
   ========================================================================== */

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}

.glass-subtle {
  background: var(--bg-glass-light);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.glass-card.no-hover:hover {
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  font-size: 1.25rem;
}

.navbar-brand svg {
  width: 32px;
  height: 32px;
}

.navbar-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-link:hover {
  color: var(--text-primary);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .navbar-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-glass);
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: var(--bg-glass-light);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-glass-light);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-icon {
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

/* Download buttons */
.download-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.download-btn:hover {
  background: var(--bg-glass-light);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.download-btn.active {
  background: var(--gradient-primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.download-btn.active:hover {
  box-shadow: var(--shadow-glow-strong);
}

.download-btn svg {
  width: 24px;
  height: 24px;
}

.download-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-btn-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.download-btn.active .download-btn-label {
  color: rgba(255, 255, 255, 0.7);
}

.download-btn-platform {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Download Groups with Dropdowns */
.download-group {
  position: relative;
}

.download-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: inherit;
}

.download-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.download-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.download-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.download-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  z-index: 100;
  min-width: 200px;
}

.download-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.download-dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.download-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.dropdown-item-label {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dropdown-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Disabled download button (Coming Soon) */
.download-btn-disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.coming-soon-badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border-radius: var(--radius-full);
  margin-left: auto;
  letter-spacing: 0.05em;
}

/* Badge link style */
.badge-link {
  cursor: pointer;
  transition: all var(--transition-fast);
}

.badge-link:hover {
  background: var(--bg-glass-light);
  color: var(--primary);
}

/* ==========================================================================
   Bento Grid
   ========================================================================== */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.bento-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  overflow: hidden;
  position: relative;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

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

.bento-card-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: var(--space-xl);
}

.bento-card-wide {
  grid-column: span 2;
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.bento-card-icon svg {
  width: 24px;
  height: 24px;
}

.bento-card h3 {
  margin-bottom: var(--space-xs);
}

.bento-card p {
  font-size: 0.9375rem;
}

.bento-card-large .bento-card-icon {
  width: 64px;
  height: 64px;
}

.bento-card-large .bento-card-icon svg {
  width: 32px;
  height: 32px;
}

.bento-card-large h3 {
  font-size: 1.5rem;
}

/* Bento card visual */
.bento-card-visual {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card-large,
  .bento-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.card-highlight {
  position: relative;
  overflow: hidden;
}

.card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--gradient-primary);
}

/* USP Cards */
.usp-card {
  text-align: center;
  padding: var(--space-xl);
}

.usp-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  color: var(--primary);
}

.usp-card-icon svg {
  width: 40px;
  height: 40px;
}

.usp-card-stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.usp-card h3 {
  margin-bottom: var(--space-xs);
}

/* Step Cards */
.step-card {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto var(--space-md);
}

.step-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  color: var(--primary);
}

.step-card-icon svg {
  width: 32px;
  height: 32px;
}

/* Step connector */
.steps-grid {
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-glass), var(--border-glass), transparent);
  z-index: 0;
}

@media (max-width: 768px) {
  .steps-grid::before {
    display: none;
  }
}

/* ==========================================================================
   Badges
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
}

.badge-primary {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  color: var(--primary);
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  opacity: 0.5;
}

.hero-orb-1 {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
}

.hero-orb-2 {
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
}

.hero-orb-3 {
  top: 30%;
  left: 5%;
  width: 300px;
  height: 300px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  margin-bottom: var(--space-md);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero-preview {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero-screenshot {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-preview-window {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-preview-titlebar {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-glass);
}

.hero-preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-preview-dot.red { background: #ff5f57; }
.hero-preview-dot.yellow { background: #febc2e; }
.hero-preview-dot.green { background: #28c840; }

.hero-preview-content {
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: var(--space-3xl);
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-preview {
    margin: 0 calc(-1 * var(--space-sm));
  }
  
  .hero-screenshot {
    max-width: 100%;
  }
}

/* ==========================================================================
   Download Section
   ========================================================================== */

.download-section {
  background: var(--gradient-hero);
}

.download-panel {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-2xl);
  text-align: center;
}

.download-panel h2 {
  margin-bottom: var(--space-sm);
}

.download-panel > p {
  margin-bottom: var(--space-xl);
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.download-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Download section responsive */
@media (max-width: 768px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .download-group {
    width: 100%;
    max-width: 280px;
  }
  
  .download-btn {
    width: 100%;
  }
  
  .download-dropdown {
    min-width: 100%;
  }
  
  .download-meta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 280px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.footer-brand-logo svg {
  width: 32px;
  height: 32px;
}

.footer-brand p {
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--bg-glass-light);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-glass);
}

.footer-bottom p {
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ==========================================================================
   Back to Top
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--bg-glass-light);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}
/* ==========================================================================
   Installation Help (Collapsible)
   ========================================================================== */

.install-help-details {
  margin-top: var(--space-sm);
}

.install-help-summary {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: #ffc107;
  cursor: pointer;
  list-style: none;
  transition: all var(--transition-fast);
}

.install-help-summary::-webkit-details-marker {
  display: none;
}

.install-help-summary:hover {
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

.install-help-summary .chevron {
  margin-left: auto;
  transition: transform var(--transition-fast);
}

.install-help-details[open] .install-help-summary .chevron {
  transform: rotate(180deg);
}

.install-help-content {
  padding: var(--space-sm);
  margin-top: var(--space-xs);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.install-help-content p {
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
}

.install-help-content p:last-child {
  margin-bottom: 0;
}

.install-help-content strong {
  color: var(--text-primary);
}

.install-help-note {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.75rem;
}

.install-help-note svg {
  flex-shrink: 0;
  color: var(--success);
}

.install-help-note a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.install-help-note a:hover {
  color: var(--primary);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  background: var(--bg-dark);
}

.faq-grid {
  display: grid;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: var(--space-sm);
}

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

.faq-answer ol,
.faq-answer ul {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.faq-answer li {
  margin-bottom: var(--space-xs);
}

.faq-answer a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--primary);
}

.faq-answer strong {
  color: var(--text-primary);
}