* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0f;
  color: #ffffff;
  overflow-x: hidden;
}

/* Liquid Glass */
.liquid-glass {
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

/* PGT logo image in nav and footer */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.75rem;
  padding: 0.5rem;
}

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

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255,255,255,0.15);
}

.nav-ctas {
  display: none;
}

@media (min-width: 768px) {
  .nav-ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.btn-glass {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.05);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  margin-top: auto;
  padding: 1.5rem 1.5rem 2.5rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 3rem 3rem 4rem;
  }
}

.hero-content h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 28rem;
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-solid {
  background: white;
  color: black;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-solid:hover {
  opacity: 0.9;
}

/* Live Trading Results Section */
.trading-results {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #0a0a0f 0%, #0b0b14 100%);
}

.results-container {
  max-width: 72rem;
  margin: 0 auto;
}

.results-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.results-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.3);
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.result-panel {
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panel-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-tier-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.panel-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.panel-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.myfxbook-widget-wrapper {
  border-radius: 0.75rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0,0,0,0.3);
  width: 100%;
  height: 600px;
}

.myfxbook-iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .myfxbook-widget-wrapper {
    height: 450px;
  }
  .myfxbook-iframe {
    min-height: 450px;
  }
}

/* Stats layout — Total Gain prominent, Platform/Verification stacked underneath */
.result-stats-layout {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.result-stat-primary {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.result-stat-primary .result-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.result-stat-primary .result-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4ade80;
}

.result-stat-secondary {
  display: flex;
  gap: 0.75rem;
}

.result-stat-secondary .result-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* Responsive: stack secondary vertically on mobile */
@media (max-width: 480px) {
  .result-stat-secondary {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.result-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.result-stat-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.gain-positive {
  color: #4ade80;
}

.btn-verify {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  align-self: flex-start;
  margin-top: auto;
}

.btn-verify:hover {
  color: white;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.results-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* Features */
.features {
  padding: 6rem 1.5rem;
  background: #0a0a0f;
}

.features-container {
  max-width: 72rem;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pricing */
.pricing {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #0a0a0f 0%, #0d0d14 50%, #0a0a0f 100%);
}

.pricing-container {
  max-width: 80rem;
  margin: 0 auto;
}

.tier-block {
  margin-bottom: 5rem;
}

.tier-block:last-child {
  margin-bottom: 0;
}

.tier-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.free-badge {
  background: rgba(74,222,128,0.15);
  color: #4ade80;
}

.member-badge {
  background: rgba(96,165,250,0.15);
  color: #60a5fa;
}

.opm-badge {
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
}

.tier-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tier-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  max-width: 36rem;
  margin: 0 auto;
  text-wrap: pretty;
}

.tier-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.tier-cards-5 {
  grid-template-columns: 1fr;
}

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

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

.pricing-card {
  padding: 1.75rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.15), 0 0 40px rgba(255,255,255,0.03);
}

.card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.card-header h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.card-features li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1.25rem;
  position: relative;
}

.card-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}

.card-features li strong {
  color: white;
  font-weight: 600;
}

/* Closing */
.closing {
  padding: 6rem 1.5rem;
  background: #0a0a0f;
}

.closing-container {
  max-width: 56rem;
  margin: 0 auto;
}

.closing-content {
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .closing-content {
    padding: 4rem 3rem;
  }
}

.closing-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.closing-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-wrap: pretty;
}

.closing-content p:last-of-type {
  margin-bottom: 2.5rem;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-value {
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.cs-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Pricing CTA section (landing page teaser — links to /pricing) */
.pricing-cta-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #0a0a0f 0%, #0d0d14 100%);
}

.pricing-cta-container {
  max-width: 72rem;
  margin: 0 auto;
}

.pricing-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

.pricing-cta-card {
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-cta-card.featured-cta {
  border: 1px solid rgba(96,165,250,0.25);
  background: rgba(96,165,250,0.04);
}

.pricing-cta-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.pricing-cta-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
}

.btn-tier-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border-radius: 0.625rem;
  transition: opacity 0.2s, background 0.2s;
  align-self: flex-start;
}

.btn-tier-cta-free {
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25);
}

.btn-tier-cta-free:hover {
  background: rgba(74,222,128,0.22);
}

.btn-tier-cta-member {
  color: #93c5fd;
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.3);
}

.btn-tier-cta-member:hover {
  background: rgba(96,165,250,0.25);
}

.btn-tier-cta-opm {
  color: #fbbf24;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.25);
}

.btn-tier-cta-opm:hover {
  background: rgba(251,191,36,0.22);
}

/* Footer */
.site-footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.85rem;
}

.footer-text {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  line-height: 1.5;
  max-width: 32rem;
}

/* ============================================================
   How It Works (4-step process section)
   ============================================================ */
.how-it-works {
  padding: 6rem 1.5rem;
  background: #0a0a0f;
}

.hiw-container {
  max-width: 72rem;
  margin: 0 auto;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}

.hiw-step {
  border-radius: 1.25rem;
  padding: 2rem 2rem 2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.hiw-step-number {
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  min-width: 2.75rem;
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.hiw-step-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.hiw-step-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.hiw-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .hiw-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .hiw-step {
    padding: 2rem 2.5rem;
  }
}

/* ============================================================
   Comparison section (table + entity defs)
   ============================================================ */
.comparison-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #0d0d14 0%, #0a0a0f 100%);
}

.comparison-container {
  max-width: 72rem;
  margin: 0 auto;
}

.entity-defs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

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

.entity-def {
  border-radius: 1.25rem;
  padding: 1.75rem;
}

.entity-def-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}

.entity-def p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.entity-def p strong {
  color: rgba(255,255,255,0.9);
}

.inline-link {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inline-link:hover {
  color: #93c5fd;
}

.comparison-table-wrapper {
  margin-top: 3.5rem;
}

.comparison-table-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.comparison-table-scroll {
  overflow-x: auto;
  border-radius: 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 540px;
}

.comparison-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comparison-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.02);
}

.comparison-table th.col-pgt {
  color: #60a5fa;
  background: rgba(96,165,250,0.05);
}

.pgt-col-label {
  color: #60a5fa;
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

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

.comparison-table td {
  padding: 0.9rem 1.25rem;
  color: rgba(255,255,255,0.55);
  vertical-align: middle;
}

.comparison-table td:first-child {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.comparison-table td.col-pgt.win {
  color: rgba(255,255,255,0.85);
  background: rgba(96,165,250,0.04);
}

.comparison-table td.col-trad.loss {
  color: rgba(255,255,255,0.38);
}

.check-icon {
  color: #4ade80;
  font-weight: 700;
  margin-right: 0.3rem;
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-section {
  padding: 6rem 1.5rem;
  background: #0a0a0f;
}

.faq-container {
  max-width: 52rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
}

.faq-item {
  border-radius: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  color: rgba(255,255,255,0.9);
  gap: 1rem;
  user-select: none;
}

/* Remove default disclosure triangle in WebKit */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
  color: rgba(255,255,255,0.6);
}

.faq-item[open] > .faq-question {
  color: #ffffff;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  animation: faqFadeIn 0.2s ease;
}

.faq-answer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.faq-answer p strong {
  color: rgba(255,255,255,0.85);
}

.faq-answer .inline-link {
  color: #60a5fa;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Trust bar (below hero)
   ============================================================ */
.trust-bar {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 1.5rem;
}

.trust-bar-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1.25rem;
  font-weight: 500;
}

.trust-badge svg {
  color: #60a5fa;
  flex-shrink: 0;
}

.trust-badge-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
}

@media (max-width: 640px) {
  .trust-bar-container {
    gap: 0.5rem;
  }
  .trust-badge {
    width: calc(50% - 0.5rem);
    justify-content: center;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
  }
  .trust-badge-divider {
    display: none;
  }
}

/* Hero watch button */
.hero-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.hero-watch-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

/* Hero trust strip — inline trust signals below CTA buttons */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

.hero-trust-item svg {
  flex-shrink: 0;
}

.hero-trust-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
  line-height: 1;
}

@media (max-width: 480px) {
  .hero-trust-sep {
    display: none;
  }
  .hero-trust-item {
    width: calc(50% - 0.25rem);
  }
}

/* ============================================================
   Video modal
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 1rem;
}

.video-modal--open {
  opacity: 1;
  visibility: visible;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #0a0a0f;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.1);
}

.video-modal-inner video {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

.modal-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  padding: 0;
}

.modal-close-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   4-column comparison table
   ============================================================ */
.comparison-table-4col {
  min-width: 700px;
}

.comparison-table-4col th,
.comparison-table-4col td {
  padding: 0.75rem 0.9rem;
  font-size: 0.8rem;
  vertical-align: top;
}

.comparison-table-4col th {
  font-size: 0.75rem;
}

.comparison-table-4col td:first-child {
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.comparison-table-4col .col-pgt.win {
  background: rgba(96,165,250,0.05);
}

@media (max-width: 640px) {
  .comparison-table-4col th,
  .comparison-table-4col td {
    padding: 0.6rem 0.65rem;
    font-size: 0.75rem;
  }
  .comparison-table-4col .col-pgt win .check-icon {
    display: block;
    margin-bottom: 0.2rem;
  }
}

/* ============================================================
   Footer — enhanced with risk disclaimer
   ============================================================ */
.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.15);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  max-width: 42rem;
}

.footer-disclaimer .footer-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  line-height: 1.65;
}

.footer-disclaimer .footer-text strong {
  color: rgba(255,255,255,0.85);
}

.footer-legal {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  text-align: center;
}

/* ============================================================
   Trust signals section
   ============================================================ */
.trust-signals {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #0d0d14 0%, #0a0a0f 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.trust-signals-container {
  max-width: 72rem;
  margin: 0 auto;
}

.ts-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ts-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 0.875rem;
}

.ts-badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

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

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

.ts-badge-card {
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ts-badge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.ts-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ts-badge-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: white;
}

.ts-badge-content p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.ts-badge-content .inline-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(96,165,250,0.3);
  transition: border-color 0.2s;
}

.ts-badge-content .inline-link:hover {
  border-color: #60a5fa;
}

/* Stats bar */
.ts-stats-bar {
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.ts-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 2rem;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.ts-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.ts-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.3;
}

.ts-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .ts-stats-bar {
    padding: 1.25rem 1rem;
    gap: 0;
  }
  .ts-stat {
    padding: 0.5rem 1rem;
    min-width: 50%;
  }
  .ts-stat-divider {
    display: none;
  }
  .ts-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .ts-stat:nth-last-child(-n+2) { border-top: 1px solid rgba(255,255,255,0.08); }
}