/* ============================================================
   Good CISO — Design System Stylesheet
   Version: 1.0.0
   Date: 2026-05-11
   Based on: DESIGN.md v1.0.0
   ============================================================ */

/* ── 1. CSS Custom Properties ── */
:root {
  /* Backgrounds (Dark Mode — default) */
  --bg-primary: #111827;
  --bg-elevated: #1a1f2e;
  --bg-overlay: #0d1117;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-tertiary: #6b7280;

  /* Brand — Primary teal */
  --color-brand: #00a896;
  --color-brand-hover: #008f7f;
  --color-brand-subtle: rgba(0, 168, 150, 0.12);

  /* Accent — Secondary amber */
  --accent-primary: #f59e0b;
  --accent-hover: #d97706;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(0, 168, 150, 0.5);

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Letter Spacing */
  --tracking-nav: 0.05em;
  --tracking-headline: -0.02em;
  --tracking-body: 0;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;

  /* Breakpoints */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}

/* Light Mode */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-elevated: #f9fafb;
  --bg-overlay: #f3f4f6;

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-tertiary: #64748b;

  --color-brand: #00a896;
  --color-brand-hover: #008f7f;
  --color-brand-subtle: rgba(0, 168, 150, 0.08);

  --accent-primary: #f59e0b;
  --accent-hover: #d97706;

  --border-subtle: rgba(0, 0, 0, 0.1);
  --border-active: rgba(0, 168, 150, 0.4);
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ── 3. Typography ── */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-headline);
  line-height: 1.2;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

/* ── 4. Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-24) 0;
  }
}

/* ── 5. Header / Navigation ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--bg-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-wordmark {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-brand);
  letter-spacing: var(--tracking-headline);
}

.nav-links {
  display: none;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: color var(--transition-base);
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text-primary);
}

.nav-link[aria-current="page"] {
  color: var(--color-brand);
}

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  padding: var(--space-2);
  opacity: 0.7;
  transition: opacity var(--transition-base);
  color: var(--text-primary);
  line-height: 1;
}

.theme-toggle:hover {
  opacity: 1;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-overlay);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-4) var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: var(--text-base);
  text-transform: none;
  letter-spacing: 0;
  padding: var(--space-2) 0;
}

/* ── 6. Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--color-brand);
  color: #ffffff;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-base);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  min-height: 44px;
  line-height: 1.4;
}

.btn-primary:hover {
  background: var(--color-brand-hover);
  color: #ffffff;
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--border-active);
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  transition: border-color var(--transition-base), color var(--transition-base);
  cursor: pointer;
  min-height: 44px;
  line-height: 1.4;
}

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

.btn-secondary:focus-visible {
  outline: 2px solid var(--border-active);
  outline-offset: 2px;
}

.btn-accent {
  display: inline-block;
  background: var(--accent-primary);
  color: #000000;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-base);
  border: none;
  cursor: pointer;
  min-height: 44px;
  line-height: 1.4;
}

.btn-accent:hover {
  background: var(--accent-hover);
}

/* ── 7. Hero Section ── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-16)) var(--space-6) var(--space-16);
  background: var(--bg-primary);
}

.hero-headline {
  font-size: clamp(2rem, 5vw, var(--text-5xl));
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  letter-spacing: var(--tracking-headline);
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: var(--space-6);
}

.hero-headline .highlight {
  color: var(--color-brand);
}

.hero-subheadline {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  margin-top: var(--space-16);
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0.6;
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* ── 8. Services Section ── */
.services {
  padding: var(--space-16) 0;
  background: var(--bg-primary);
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.services-header h2 {
  margin-bottom: var(--space-4);
}

.services-header p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── 9. Service Card ── */
.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.service-card-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.service-card-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-6);
}

.service-card-link {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--transition-base);
}

.service-card-link:hover {
  gap: var(--space-2);
}

/* ── 10. Rate Card / Pricing Table ── */
.rate-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  overflow-x: auto;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.rate-row {
  border-bottom: 1px solid var(--border-subtle);
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-row.highlighted {
  background: var(--color-brand-subtle);
  border-radius: var(--radius-md);
}

.rate-row.highlighted .rate-cell-service {
  color: var(--color-brand);
}

.rate-cell {
  padding: var(--space-4) var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.rate-cell-service {
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

.rate-cell-price {
  font-weight: var(--font-weight-semibold);
  color: var(--color-brand);
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── 11. CTA Section ── */
.cta-section {
  padding: var(--space-16) 0;
  text-align: center;
  background: var(--bg-elevated);
}

@media (min-width: 768px) {
  .cta-section {
    padding: var(--space-24) 0;
  }
}

.cta-headline {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  letter-spacing: var(--tracking-headline);
  margin-bottom: var(--space-4);
}

.cta-subtext {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 12. Footer ── */
.footer {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

.footer-brand-name {
  color: var(--color-brand);
  font-weight: var(--font-weight-semibold);
}

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

.footer-link {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--text-secondary);
}

.footer-copy {
  width: 100%;
  text-align: center;
  color: var(--text-tertiary);
  font-size: var(--text-xs);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

/* ── 13. Badge ── */
.badge-accent {
  display: inline-block;
  background: var(--accent-primary);
  color: #000000;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── 14. Form Elements ── */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: 44px;
  line-height: 1.5;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--border-active);
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #ef4444;
}

.form-error {
  display: none;
  font-size: var(--text-xs);
  color: #ef4444;
  margin-top: var(--space-1);
}

.form-error.visible {
  display: block;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ── 15. Page Header (inner pages) ── */
.page-header {
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-12);
  text-align: center;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
  margin-bottom: var(--space-4);
}

.page-header p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: var(--text-lg);
}

/* ── 16. Service Detail Page ── */
.service-detail {
  padding: var(--space-16) 0;
}

.service-detail-grid {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-16);
  }
}

.service-detail-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.service-detail-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.service-detail-content p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: var(--space-6);
}

.service-detail-content ul li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  color: var(--text-secondary);
}

.service-detail-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-brand);
  font-weight: var(--font-weight-semibold);
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.service-sidebar-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.service-sidebar-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

/* ── 17. Utility Classes ── */
.text-center { text-align: center; }
.text-brand { color: var(--color-brand); }
.text-muted { color: var(--text-secondary); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

/* ── 18. Focus Visible ── */
:focus-visible {
  outline: 2px solid var(--border-active);
  outline-offset: 2px;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* ── 19. Selection ── */
::selection {
  background: var(--color-brand);
  color: #ffffff;
}

/* ── 20. Methodology ── */
.methodology-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .methodology-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-4);
  }
}

.methodology-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
}

.methodology-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.methodology-content h3 {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.methodology-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── 21. Digital Products ── */
.products-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-price {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
  letter-spacing: var(--tracking-headline);
}

.product-title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

.product-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

/* ── 22. Client Logos ── */
.section-tinted {
  background: var(--bg-elevated);
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-8) var(--space-12);
  margin-top: var(--space-12);
}

.client-logo {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-tertiary);
  letter-spacing: var(--tracking-headline);
  padding: var(--space-2) var(--space-4);
}

/* ── 23. Testimonials ── */
.testimonials-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.testimonial-stars {
  color: var(--accent-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

.testimonial-author span {
  font-weight: var(--font-weight-regular);
  color: var(--text-tertiary);
}

/* ── 24. FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-12);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: var(--space-6);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-family: inherit;
}

.faq-question:hover {
  background: var(--bg-elevated);
}

.faq-icon {
  color: var(--color-brand);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-6);
}

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