/* Flowix Simracing Telemetry - Neon Glowing Landing Stylesheet */

:root {
  --fx-bg-dark: #070510;
  --fx-bg-surface: rgba(18, 13, 38, 0.7);
  --fx-bg-surface-elevated: rgba(26, 19, 54, 0.85);
  --fx-border-subtle: rgba(124, 77, 255, 0.2);
  --fx-border-glow: rgba(0, 229, 255, 0.4);

  --fx-neon-cyan: #00e5ff;
  --fx-neon-purple: #7c4dff;
  --fx-neon-magenta: #d900ff;
  --fx-neon-green: #00e676;
  --fx-neon-red: #ff4757;
  --fx-text-main: #f0effc;
  --fx-text-muted: #b0adc9;
  --fx-glow-cyan: 0 0 18px rgba(0, 229, 255, 0.45);
  --fx-glow-purple: 0 0 18px rgba(124, 77, 255, 0.45);
}

.text-muted {
  color: #b0adc9 !important;
}

.text-secondary {
  color: #c4c1dc !important;
}

.feature-mini-card {
  background: rgba(22, 16, 44, 0.7);
  border: 1px solid var(--fx-border-subtle);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.feature-mini-card:hover {
  background: rgba(32, 24, 64, 0.85);
  border-color: var(--fx-border-glow);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.15);
}

.feature-mini-desc {
  font-size: 0.92rem;
  color: #c4c1dc;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

/* Offset anchor scrolling so fixed top navbar never obscures headers */
section[id],
div[id],
header[id],
article[id],
:target {
  scroll-margin-top: 4.5rem;
}

#agent {
  scroll-margin-top: 5.25rem;
}

body {
  background-color: var(--fx-bg-dark);
  color: var(--fx-text-main);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Ambient glow blobs behind content */
.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.18;
}

.glow-top-left {
  top: -100px;
  left: -150px;
  background: var(--fx-neon-purple);
}

.glow-top-right {
  top: 15%;
  right: -150px;
  background: var(--fx-neon-cyan);
}

.glow-middle {
  top: 50%;
  left: 20%;
  background: var(--fx-neon-magenta);
  opacity: 0.12;
}

/* Header & Navbar */
.navbar-flowix {
  background: rgba(7, 5, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--fx-border-subtle);
  padding: 0.85rem 0;
  transition: all 0.3s ease;
  z-index: 1050;
}

.navbar-brand-text {
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 20%, var(--fx-neon-cyan) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.navbar-brand-text:hover {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.45));
}

.navbar-brand-text:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

.navbar-brand-text svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.navbar-brand-text:hover svg {
  transform: rotate(-10deg) scale(1.12);
  filter: drop-shadow(0 0 10px var(--fx-neon-cyan));
}

.brand-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 229, 255, 0.15);
  color: var(--fx-neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-link-custom {
  color: var(--fx-text-muted) !important;
  font-weight: 500;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link-custom:hover {
  color: var(--fx-neon-cyan) !important;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 3.5rem 0;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-highlight-cyan {
  color: var(--fx-neon-cyan);
  text-shadow: var(--fx-glow-cyan);
}

.hero-highlight-purple {
  color: var(--fx-neon-purple);
  text-shadow: var(--fx-glow-purple);
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fx-text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Call to Action Buttons */
.btn-neon-primary {
  background: linear-gradient(135deg, var(--fx-neon-cyan) 0%, #00b4d8 100%);
  color: #030a16;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-neon-primary:hover {
  background: linear-gradient(135deg, #33ebff 0%, #00c6eb 100%);
  color: #000000;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
  transform: translateY(-2px);
}

.btn-neon-outline {
  background: rgba(124, 77, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  border: 1px solid rgba(124, 77, 255, 0.5);
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.15);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-neon-outline:hover {
  background: rgba(124, 77, 255, 0.2);
  color: #ffffff;
  border-color: var(--fx-neon-purple);
  box-shadow: var(--fx-glow-purple);
  transform: translateY(-2px);
}

/* Hero Media Frame */
.hero-media-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--fx-border-glow);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 229, 255, 0.25);
  background: #0d091e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-media-wrapper:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 45px rgba(0, 229, 255, 0.4);
}

.hero-media-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(7, 5, 16, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #ffffff;
}

.live-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--fx-neon-green);
  box-shadow: 0 0 10px var(--fx-neon-green);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

/* Feature Cards - Material Design Style with Card-Wide Neon Images */
.feature-card {
  background: var(--fx-bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--fx-border-subtle);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--fx-bg-surface-elevated);
  border-color: var(--fx-border-glow);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 229, 255, 0.25);
}

.feature-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(124, 77, 255, 0.2);
}

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.feature-card:hover .feature-card-img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.feature-card-img-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(18, 13, 38, 0.95) 0%, rgba(18, 13, 38, 0) 100%);
  pointer-events: none;
}

.feature-card-body {
  padding: 1.5rem 1.5rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.1);
}

.icon-cyan {
  background: rgba(0, 229, 255, 0.12);
  color: var(--fx-neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.icon-purple {
  background: rgba(124, 77, 255, 0.12);
  color: var(--fx-neon-purple);
  border: 1px solid rgba(124, 77, 255, 0.35);
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.2);
}

.icon-magenta {
  background: rgba(255, 42, 133, 0.12);
  color: var(--fx-neon-magenta);
  border: 1px solid rgba(255, 42, 133, 0.35);
  box-shadow: 0 0 15px rgba(255, 42, 133, 0.2);
}

.icon-green {
  background: rgba(0, 230, 118, 0.12);
  color: var(--fx-neon-green);
  border: 1px solid rgba(0, 230, 118, 0.35);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--fx-text-muted);
  margin-bottom: 0;
  flex-grow: 1;
}

/* Agent Highlight Banner */
.agent-banner {
  background: linear-gradient(135deg, rgba(20, 15, 45, 0.9) 0%, rgba(10, 8, 25, 0.95) 100%);
  border: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.agent-stat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  transition: all 0.2s ease;
}

.agent-stat-pill:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.3);
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--fx-neon-cyan);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fx-text-muted);
}

/* Deep Dive Illustration Sections */
.deepdive-section {
  padding: 2.5rem 0;
}

.deepdive-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--fx-border-subtle);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.deepdive-card:hover {
  border-color: var(--fx-border-glow);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.2);
}

/* Games Support Badges */
.game-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.game-badge.active-ams2 {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--fx-neon-cyan);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

.game-badge.in-dev {
  color: var(--fx-text-muted);
  border-style: dashed;
}

/* Section Header styling */
.section-tag {
  color: var(--fx-neon-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--fx-text-muted);
  max-width: 650px;
  margin: 0 auto 3rem auto;
  font-size: 1.05rem;
}

/* Advanced Vehicle Dynamics & Setup Tuning Section */
.tuning-card {
  background: var(--fx-bg-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--fx-border-subtle);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.tuning-card:hover {
  transform: translateY(-5px);
  background: var(--fx-bg-surface-elevated);
  border-color: var(--fx-border-glow);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 229, 255, 0.2);
}

.tuning-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.tuning-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #cfcbdf;
}

.channel-chip .chip-unit {
  color: var(--fx-neon-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
}

.advanced-setup-callout {
  background: linear-gradient(135deg, rgba(16, 12, 38, 0.92) 0%, rgba(8, 6, 22, 0.98) 100%);
  border: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.15);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.advanced-setup-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fx-neon-cyan), var(--fx-neon-purple), var(--fx-neon-magenta));
}

.setup-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--fx-neon-cyan);
  color: var(--fx-neon-cyan);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.setup-code-pill {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: rgba(0, 229, 255, 0.1);
  color: var(--fx-neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Footer */
.footer-flowix {
  background: rgba(4, 3, 10, 0.95);
  border-top: 1px solid var(--fx-border-subtle);
  padding: 3rem 0 2rem 0;
  margin-top: 5rem;
}

.footer-link {
  color: var(--fx-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--fx-neon-cyan);
}

/* Responsive utilities */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 3.5rem 0 2.5rem 0;
    text-align: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-media-wrapper {
    margin-top: 2.5rem;
  }
  .agent-banner {
    padding: 2rem 1.5rem;
  }
}

/* Dashboard Terminal Styles */
.dashboard-container {
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.dashboard-card {
  background: var(--fx-bg-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--fx-border-subtle);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  border-color: var(--fx-border-glow);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 229, 255, 0.15);
}

.driver-avatar-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--fx-neon-cyan), var(--fx-neon-purple));
  color: #030814;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  flex-shrink: 0;
}

.table-neon-wrapper {
  background: var(--fx-bg-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--fx-border-subtle);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.table-neon-wrapper:hover {
  border-color: var(--fx-border-glow);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 229, 255, 0.15);
}

.table-neon {
  margin-bottom: 0;
  color: var(--fx-text-main);
  border-color: rgba(124, 77, 255, 0.15);
  vertical-align: middle;
}

.table-neon thead th {
  background: rgba(12, 8, 28, 0.95);
  color: #b0adc9;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 229, 255, 0.25);
  white-space: nowrap;
}

.table-neon tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(124, 77, 255, 0.1);
  background: transparent;
  color: #e3e0f3;
  font-size: 0.92rem;
  white-space: nowrap;
}

.table-neon tbody tr {
  transition: background-color 0.2s ease;
}

.table-neon tbody tr:hover td {
  background: rgba(0, 229, 255, 0.04);
  color: #ffffff;
}

.time-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.best-lap-glow {
  color: var(--fx-neon-cyan) !important;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.best-lap-personal {
  color: var(--fx-neon-green) !important;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.55);
}

.best-lap-total {
  color: var(--fx-neon-magenta) !important;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(217, 0, 255, 0.65);
}

/* Records Mode Switcher */
.records-mode-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(18, 13, 38, 0.85);
  border: 1px solid rgba(124, 77, 255, 0.25);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}

.records-mode-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  color: #6b6684;
  opacity: 0.55;
  background: transparent;
}

.records-mode-btn:hover {
  color: var(--fx-text-main);
  opacity: 0.85;
}

.records-mode-btn.active.personal {
  color: #00e676;
  background: rgba(0, 230, 118, 0.14);
  border-color: rgba(0, 230, 118, 0.4);
  font-weight: 600;
  opacity: 1.0;
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.25);
}

.records-mode-btn.active.overall {
  color: var(--fx-neon-magenta);
  background: rgba(217, 0, 255, 0.14);
  border-color: rgba(217, 0, 255, 0.4);
  font-weight: 600;
  opacity: 1.0;
  box-shadow: 0 0 12px rgba(217, 0, 255, 0.3);
}

.btn-neon-danger {
  background: rgba(255, 42, 133, 0.1);
  color: #ff5277;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 42, 133, 0.35);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.btn-neon-danger:hover {
  background: rgba(255, 42, 133, 0.22);
  color: #ffffff;
  border-color: var(--fx-neon-magenta);
  box-shadow: 0 0 18px rgba(255, 42, 133, 0.35);
}

/* Technical Specifications & Architecture Grid */
.spec-card {
  background: var(--fx-bg-surface);
  border: 1px solid var(--fx-border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.25s ease;
}

.spec-card:hover {
  background: var(--fx-bg-surface-elevated);
  border-color: var(--fx-border-glow);
  box-shadow: 0 10px 28px rgba(0, 229, 255, 0.12);
  transform: translateY(-2px);
}

.spec-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--fx-neon-cyan);
  text-shadow: var(--fx-glow-cyan);
  margin-bottom: 0.35rem;
}

.spec-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.spec-desc {
  font-size: 0.88rem;
  color: var(--fx-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Pricing Cards */
.pricing-card {
  background: var(--fx-bg-surface);
  border: 1px solid var(--fx-border-subtle);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
  background: linear-gradient(180deg, rgba(26, 19, 54, 0.9) 0%, rgba(18, 13, 38, 0.8) 100%);
}

.pricing-card:hover {
  border-color: var(--fx-border-glow);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 229, 255, 0.2);
}

.pricing-badge-pro {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--fx-neon-cyan), var(--fx-neon-purple));
  color: #030814;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.pricing-plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--fx-neon-cyan);
  text-shadow: var(--fx-glow-cyan);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price-sub {
  font-size: 0.85rem;
  color: var(--fx-text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: #c4c1dc;
  line-height: 1.45;
}

.pricing-feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
  background: var(--fx-bg-surface);
  border: 1px solid var(--fx-border-subtle);
  border-radius: 14px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(0, 229, 255, 0.35);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 229, 255, 0.05);
  color: var(--fx-neon-cyan);
  border-bottom: 1px solid rgba(124, 77, 255, 0.2);
}

.faq-accordion .accordion-button::after {
  filter: invert(1) brightness(2);
  transition: transform 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(70%) sepia(80%) saturate(1000%) hue-rotate(145deg);
}

.faq-accordion .accordion-body {
  padding: 1.25rem 1.5rem;
  color: #c4c1dc;
  font-size: 0.95rem;
  line-height: 1.65;
}
