/* ============================================================
   LEDGERGUARD UK — Sections
   Section-specific layouts and styles
   ============================================================ */

/* ----------------------------------------------------------
   1. Hero
   ---------------------------------------------------------- */
.hero-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 40px 0 100px;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  border-bottom: 1px solid var(--border-primary);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}

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

.hero-content h1 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-ctas {
    justify-content: flex-start;
  }
}

/* Hero Calculator (right panel) */
.hero-calculator {
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
}

.calc-mini-header {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.calc-mini-slider-group {
  margin-bottom: 16px;
}

.calc-mini-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.calc-mini-value {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

/* Custom Range Input */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border-primary);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  box-shadow: 0 0 10px var(--accent-glow-strong),
              0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 16px var(--accent-glow-strong),
              0 3px 8px rgba(0, 0, 0, 0.4);
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  box-shadow: 0 0 10px var(--accent-glow-strong),
              0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.15);
}

input[type="range"]::-moz-range-track {
  height: 6px;
  background: var(--border-primary);
  border-radius: 3px;
  border: none;
}

input[type="range"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 3px;
}

/* Calculator Result */
.calc-mini-result {
  text-align: center;
  margin-top: 20px;
  padding: 16px;
  background: var(--success-glow);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
}

.calc-mini-result-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.calc-mini-result-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--success);
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
  line-height: 1.2;
}

.calc-mini-breakdown {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.calc-mini-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  transition: text-decoration 0.2s ease, color 0.2s ease;
}

.calc-mini-link:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

/* ----------------------------------------------------------
   2. Problem Section
   ---------------------------------------------------------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}

.problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  transition: border-color 0.25s ease,
              transform 0.25s ease,
              box-shadow 0.25s ease;
}

.problem-card:hover {
  border-color: #2d3f72;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}

.problem-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.problem-stat {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.problem-source {
  font-size: 10px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}

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

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

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

/* ----------------------------------------------------------
   3. Full Calculator Section
   ---------------------------------------------------------- */
.calculator-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .calculator-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
  }
}

/* Sector Tabs */
.sector-tabs {
  display: flex;
  gap: 4px;
  background: var(--border-primary);
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.sector-tab {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 12.5px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
  background: none;
  line-height: 1.3;
}

.sector-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.sector-tab.active {
  background: var(--accent);
  color: #ffffff;
}

.sector-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Slider Groups */
.slider-group {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(6, 9, 19, 0.4);
  border: 1px solid var(--border-primary);
  border-radius: 10px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.slider-value {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.slider-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
  line-height: 1.4;
}

/* Results Panel */
.calc-results-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 120px;
}

@media (max-width: 767px) {
  .calc-results-panel {
    position: static;
  }
}

.calc-result-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.calc-result-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 52px;
  color: var(--success);
  margin: 12px 0;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

.calc-breakdown {
  border-top: 1px solid var(--border-primary);
  padding-top: 20px;
  margin-top: 24px;
  text-align: left;
}

.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

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

.calc-breakdown-row strong {
  color: var(--text-primary);
  font-weight: 600;
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.5;
}

/* ----------------------------------------------------------
   4. Sample Audit
   ---------------------------------------------------------- */
.sample-audit-card {
  max-width: 900px;
  margin: 48px auto 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sample-total {
  text-align: center;
  margin-bottom: 32px;
}

.sample-total-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 48px;
  color: var(--success);
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

.sample-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sample-item {
  padding: 16px;
  background: rgba(6, 9, 19, 0.4);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
}

.sample-item-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.4;
}

.sample-item-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .sample-breakdown {
    grid-template-columns: 1fr;
  }

  .sample-audit-card {
    padding: 28px 20px;
  }
}

/* ----------------------------------------------------------
   5. How It Works — Steps
   ---------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}

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

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

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  text-align: left;
  transition: border-color 0.25s ease,
              transform 0.25s ease,
              box-shadow 0.25s ease;
}

.step-card:hover {
  border-color: #2d3f72;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 20px;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-primary);
  line-height: 1;
}

.step-card h3 {
  margin-top: 12px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   6. Dashboard Preview / Mockup
   ---------------------------------------------------------- */
.dashboard-mockup {
  max-width: 900px;
  margin: 40px auto 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.mockup-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-primary);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) {
  background: var(--danger);
}

.mockup-dot:nth-child(2) {
  background: var(--warning);
}

.mockup-dot:nth-child(3) {
  background: var(--success);
}

.mockup-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
}

/* KPI Cards */
.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.kpi-card {
  padding: 16px;
  background: rgba(8, 11, 17, 0.5);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
}

.kpi-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.kpi-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  line-height: 1.2;
}

/* Console */
.mockup-console {
  background: #02050b;
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  padding: 16px;
  font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 11.5px;
  color: #38bdf8;
  height: 140px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.console-line {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.console-time {
  color: #475569;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .mockup-kpis {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   7. Comparison Table
   ---------------------------------------------------------- */
.comparison-wrapper {
  margin-top: 40px;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Horizontal scroll on mobile (legacy class, use .comparison-wrapper instead) */
.comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.comparison-table th {
  background: #0c1224;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-primary);
  white-space: nowrap;
}

.comparison-table td {
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-primary);
}

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

.col-feature {
  font-weight: 600;
  color: var(--text-primary);
}

.col-manual {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.01);
}

.col-auto {
  color: var(--text-primary);
  font-weight: 500;
  background: rgba(59, 130, 246, 0.03);
}

/* ----------------------------------------------------------
   8. Security Section
   ---------------------------------------------------------- */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}

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

.security-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 36px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: border-color 0.25s ease,
              transform 0.25s ease,
              box-shadow 0.25s ease;
}

.security-card:hover {
  border-color: #2d3f72;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.security-icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--accent);
  line-height: 1;
}

.security-icon svg {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.security-card h3 {
  margin-bottom: 8px;
}

.security-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ----------------------------------------------------------
   9. Pricing
   ---------------------------------------------------------- */
.pricing-card {
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 48px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: border-color 0.25s ease,
              box-shadow 0.25s ease;
}

.pricing-card:hover {
  border-color: #2d3f72;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  color: var(--success);
  margin-bottom: 8px;
  line-height: 1.1;
}

.pricing-subtext {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  fill: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-volume {
  margin-top: 40px;
  border-top: 1px solid var(--border-primary);
  padding-top: 32px;
}

.volume-table {
  width: 100%;
  border-collapse: collapse;
}

.volume-table th,
.volume-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--border-subtle);
}

.volume-table th {
  color: var(--text-secondary);
  font-weight: 600;
}

.volume-table td {
  color: var(--text-primary);
}

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

.scarcity-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 32px 20px;
  }

  .pricing-headline {
    font-size: 42px;
  }
}

/* ----------------------------------------------------------
   10. CTA Section
   ---------------------------------------------------------- */
.cta-section {
  background:
    radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(12, 18, 36, 0.6) 0%, rgba(6, 9, 19, 0.9) 100%);
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-primary);
  text-align: center;
  padding: 72px 0;
}

.cta-section h2 {
  margin-bottom: 12px;
  font-size: 36px;
}

.cta-card {
  max-width: 520px;
  margin: 40px auto 0;
  padding: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-input {
  width: 100%;
  background: rgba(6, 9, 19, 0.8);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  padding: 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

select.cta-input {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cta-input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.cta-input::placeholder {
  color: var(--text-muted);
}

.cta-trust-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-time-pressure {
  margin-top: 20px;
  font-size: 13px;
  color: var(--warning);
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-card {
    padding: 28px 20px;
  }

  .cta-section h2 {
    font-size: 28px;
  }
}

/* ----------------------------------------------------------
   11. FAQ
   ---------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s ease;
}

.faq-item:hover {
  border-color: #2d3f72;
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  transition: background 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  gap: 16px;
}

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

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 16px;
}

.faq-chevron {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-answer p + p {
  margin-top: 12px;
}
