/* ============================================================
   IK Tracker — Feuille de style partagée
   ============================================================ */

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

/* ── Reset & Box-sizing ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ── Variables CSS ── */
:root {
  --bg-main:        #0A0E1A;
  --bg-card:        #0D1B2A;
  --bg-secondary:   #16213E;
  --accent-green:   #2ECC71;
  --accent-blue:    #2E86C1;
  --accent-green-dim: rgba(46, 204, 113, 0.12);
  --accent-blue-dim:  rgba(46, 134, 193, 0.12);
  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.60);
  --text-muted:     rgba(255, 255, 255, 0.35);
  --border-card:    rgba(46, 134, 193, 0.18);
  --border-green:   rgba(46, 204, 113, 0.25);
  --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-btn:     0 4px 20px rgba(46, 204, 113, 0.30);
  --radius-card:    16px;
  --radius-btn:     10px;
  --radius-badge:   6px;
  --nav-height:     64px;
  --max-width:      1140px;
  --transition:     0.25s ease;
}

/* ── Base ── */
body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-green); }

ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 56px;
}

.text-center { text-align: center; }

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.40); }
  50%       { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes floatDot {
  0%, 100% { transform: translateY(0px); opacity: 0.6; }
  50%       { transform: translateY(-12px); opacity: 1; }
}

.animate-fadeInUp {
  animation: fadeInUp 0.65s ease both;
}

.delay-1 { animation-delay: 0.10s; }
.delay-2 { animation-delay: 0.20s; }
.delay-3 { animation-delay: 0.30s; }
.delay-4 { animation-delay: 0.40s; }
.delay-5 { animation-delay: 0.50s; }
.delay-6 { animation-delay: 0.60s; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(46, 134, 193, 0.12);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: contain;
  display: block;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--accent-blue-dim);
}

.nav-links .btn-nav-cta {
  background: var(--accent-green);
  color: #0A0E1A !important;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-btn);
}

.nav-links .btn-nav-cta:hover {
  background: #27ae60;
  color: #0A0E1A !important;
}

/* ── Hamburger (mobile) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

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

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    ellipse at center,
    rgba(46, 204, 113, 0.07) 0%,
    rgba(46, 134, 193, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-main));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green-dim);
  border: 1px solid var(--border-green);
  color: var(--accent-green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--radius-btn);
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), opacity var(--transition);
  white-space: nowrap;
  padding: 13px 26px;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent-green);
  color: #0A0E1A;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: #27ae60;
  box-shadow: 0 6px 28px rgba(46, 204, 113, 0.45);
  color: #0A0E1A;
}

.btn-secondary {
  background: var(--accent-blue-dim);
  color: var(--text-primary);
  border: 1px solid var(--border-card);
}

.btn-secondary:hover {
  background: rgba(46, 134, 193, 0.22);
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

.btn-download {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.10);
  gap: 12px;
}

.btn-download:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(22, 33, 62, 0.9);
  color: var(--text-primary);
}

.btn-download .btn-icon {
  width: 32px;
  height: 32px;
  background: rgba(46, 134, 193, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.btn-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.btn-label-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1;
}

.btn-label-main {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}

/* Badge Play Store officiel */
.badge-playstore {
  display: inline-block;
  transition: transform var(--transition), filter var(--transition);
  animation: pulse 3s ease-in-out infinite;
}

.badge-playstore img {
  height: 54px;
  width: auto;
  border-radius: 8px;
}

.badge-playstore:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
  animation: none;
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 134, 193, 0.40);
  box-shadow: var(--shadow-card);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card.card-green {
  border-color: var(--border-green);
}

.card.card-green:hover {
  border-color: rgba(46, 204, 113, 0.55);
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.12);
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ── Steps / How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(46, 204, 113, 0.06);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-green-dim);
  border: 1px solid var(--border-green);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Connecteur entre étapes */
.steps-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  color: var(--accent-green);
  font-size: 1.2rem;
  opacity: 0.5;
}

/* ── Download Section ── */
.download-section {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(46, 134, 193, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.download-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.download-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.download-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}

.download-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.download-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.download-meta-item::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
}

.download-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.download-window {
  width: 220px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  overflow: hidden;
}

.download-window-bar {
  background: rgba(46, 134, 193, 0.15);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-card);
}

.win-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.win-dot.red   { background: #e74c3c; }
.win-dot.yellow { background: #f39c12; }
.win-dot.green  { background: var(--accent-green); }

.download-window-bar span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-left: 4px;
}

.download-window-body {
  padding: 14px;
}

.win-row {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 8px;
}

.win-row:last-child { margin-bottom: 0; }

.win-row.short  { width: 60%; }
.win-row.medium { width: 80%; }
.win-row.accent {
  width: 45%;
  background: rgba(46, 204, 113, 0.25);
}

/* ── Badges Pro/Loisir ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-badge);
}

.badge-pro {
  background: rgba(46, 204, 113, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(46, 204, 113, 0.30);
}

.badge-leisure {
  background: rgba(46, 134, 193, 0.15);
  color: var(--accent-blue);
  border: 1px solid rgba(46, 134, 193, 0.30);
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-card) 20%,
    var(--border-card) 80%,
    transparent
  );
  margin: 0;
}

/* ── Footer ── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  padding: 48px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent-green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── Privacy page ── */
.privacy-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
}

.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 96px;
}

.privacy-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--accent-green);
}

.privacy-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-top: 24px;
  margin-bottom: 10px;
}

.privacy-content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.privacy-content ul {
  margin: 12px 0 18px 0;
  padding-left: 0;
}

.privacy-content ul li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.privacy-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 1rem;
}

.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin: 28px 0;
}

.privacy-highlight {
  background: var(--accent-green-dim);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin: 20px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.privacy-highlight-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }

.privacy-highlight p {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.875rem;
}

.privacy-table th {
  background: var(--bg-secondary);
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-card);
}

.privacy-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-secondary);
  vertical-align: top;
}

.privacy-table tr:last-child td { border-bottom: none; }

.privacy-table tr:hover td {
  background: rgba(46, 134, 193, 0.04);
}

.update-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .download-section {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }

  .download-visual { display: none; }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-card);
    gap: 4px;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; width: 100%; }
  .nav-toggle { display: flex; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 64px;
  }

  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1rem; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats { gap: 24px; }

  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-content { padding: 0 0 64px; }
  .privacy-content h2 { font-size: 1.2rem; }

  .download-section { padding: 32px 24px; }
  .download-title { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 1.85rem; }
  .btn { padding: 12px 20px; font-size: 0.875rem; }
  .card { padding: 22px; }
  .privacy-card { padding: 20px; }
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(46, 134, 193, 0.4);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-blue);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

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

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.25s;
  line-height: 1;
}

.faq-answer {
  padding: 0 22px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 14px 0 0;
}

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