/* ================================================
   FAST FUNDED — STYLE.CSS
   Ultra premium dark theme fintech — $20K design
   ================================================ */

/* === VARIABLES === */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #151515;
  --bg-card-hover: #1A1A1A;
  --orange: #F39C12;
  --orange-dark: #E8A838;
  --orange-glow: rgba(243, 156, 18, 0.15);
  --orange-glow-strong: rgba(243, 156, 18, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --text-muted: #666666;
  --green: #2ECC71;
  --green-glow: rgba(46, 204, 113, 0.15);
  --red: #E74C3C;
  --border: rgba(255, 255, 255, 0.06);
  --border-orange: rgba(243, 156, 18, 0.3);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050505;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); font-size: 0.875rem; }

/* === GRADIENT TEXT === */
.text-gradient {
  background: linear-gradient(135deg, #F39C12 0%, #F1C40F 50%, #E8A838 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === PARTICLES CANVAS === */
.particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* === SECTION DIVIDERS === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
  max-width: 80%;
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--orange);
  color: #000;
}
.btn--primary:hover {
  background: var(--orange-dark);
  color: #000;
  transform: scale(1.02);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--border-orange);
}
.btn--outline:hover {
  background: var(--orange-glow);
  border-color: var(--orange);
}

.btn--glow {
  box-shadow: 0 0 20px var(--orange-glow), 0 0 60px rgba(243,156,18,0.05);
}
.btn--glow:hover {
  box-shadow: 0 0 30px var(--orange-glow-strong), 0 0 80px rgba(243,156,18,0.1);
}

.btn--perf {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}
.btn--perf:hover {
  background: var(--orange);
  color: #000;
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn--full { width: 100%; }

/* === BADGES === */
.badge {
  display: inline-block;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge--orange {
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid var(--border-orange);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 40px;
  mix-blend-mode: lighten;
}

.navbar__links {
  display: flex;
  gap: 2rem;
}
.navbar__links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.navbar__links a:hover { color: var(--text-primary); }
.navbar__links a:hover::after { width: 100%; }

.navbar__cta { font-size: 0.875rem; padding: 0.5rem 1.25rem; }
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
  transition: right 0.4s ease;
  z-index: 999;
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--text-primary); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 7rem 0 3rem;
  overflow: hidden;
  z-index: 1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
}

.hero__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.08) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url('/assets/noise.png');
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--green-glow);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 2rem;
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.8; }
}

/* === ANIMATIONS (fade-in stagger) === */
.anim-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === STATS STRIP === */
.stats-strip {
  position: relative;
  z-index: 1;
  background: rgba(17, 17, 17, 0.85);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item__number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 0 40px var(--orange-glow);
  animation: statGlow 3s ease-in-out infinite;
}
@keyframes statGlow {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.stat-item__label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.section--alt {
  background: rgba(17, 17, 17, 0.85);
}

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

.section__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* === VSL === */
.vsl-player {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-orange);
  box-shadow: 0 0 40px var(--orange-glow), 0 20px 60px rgba(0,0,0,0.4);
}

.vsl-placeholder {
  aspect-ratio: 16/9;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.vsl-placeholder__logo { height: 40px; opacity: 0.6; }
.vsl-placeholder__play { opacity: 0.4; }
.vsl-placeholder__text { color: var(--text-muted); font-size: 0.875rem; }

/* === TIMELINE (How It Works) === */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
}

.timeline__progress {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
}
.timeline__progress-fill {
  width: 0%;
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--orange-glow-strong);
}

.timeline__step {
  text-align: center;
  position: relative;
}

.timeline__dot {
  width: 14px;
  height: 14px;
  background: var(--bg-primary);
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition);
  z-index: 2;
}
.timeline__step.active .timeline__dot {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow-strong);
}

.timeline__icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all var(--transition);
}
.timeline__step.active .timeline__icon {
  border-color: var(--border-orange);
  box-shadow: 0 0 20px var(--orange-glow);
}

.timeline__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* === PRICING CALCULATOR === */
.pricing-calc {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.pricing-calc__slider-wrap {
  margin-bottom: 2rem;
}

.pricing-calc__label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-card);
  outline: none;
  cursor: pointer;
}
.pricing-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 0 12px var(--orange-glow-strong);
  border: 3px solid var(--bg-primary);
}
.pricing-calc__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 0 12px var(--orange-glow-strong);
  border: 3px solid var(--bg-primary);
}

.pricing-calc__ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding: 0 2px;
}
.pricing-calc__ticks span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
}
.pricing-calc__ticks span.active { color: var(--orange); }

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 0 30px var(--orange-glow), 0 20px 60px rgba(0,0,0,0.3);
  transition: border-color var(--transition);
}
.glass-card:hover {
  border-color: var(--border-orange);
}

.pricing-calc__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-calc__size {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-calc__badge {
  background: var(--orange);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pricing-calc__badge.hidden { display: none; }

.pricing-calc__price {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-calc__price-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.pricing-calc__price-amount {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}

.pricing-calc__hint {
  text-align: center;
  margin-bottom: 1.25rem;
}

.pricing-calc__hint-text {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.pricing-calc__disclaimer {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Pricing Table */
.pricing-table-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1rem;
  background: none;
  border: none;
  color: var(--orange);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.pricing-toggle svg { transition: transform var(--transition); }
.pricing-toggle.open svg { transform: rotate(180deg); }

.pricing-table-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.pricing-table-container.open { max-height: 600px; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.pricing-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.pricing-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.pricing-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}
.pricing-table__popular td {
  background: rgba(243,156,18,0.03);
  border-color: var(--border-orange);
  color: var(--text-primary);
}

.pricing-notes {
  margin-top: 1.5rem;
  text-align: center;
}
.pricing-notes p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === TOOLS GRID (Glassmorphism cards) === */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tool-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.tool-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px var(--orange-glow), 0 0 60px rgba(243,156,18,0.05);
  background: rgba(255, 255, 255, 0.05);
}

.tool-card__badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  background: var(--orange);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tool-card__icon {
  width: 56px;
  height: 56px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.tool-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tool-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.tool-card__features {
  margin-bottom: 1.5rem;
}
.tool-card__features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.tool-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* === GUARANTEE === */
.guarantee {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(243,156,18,0.03) 50%, var(--bg-primary) 100%);
  padding: 100px 0;
}

.guarantee__shield {
  margin-bottom: 2rem;
  will-change: opacity;
  animation: shieldPulse 3s ease-in-out infinite;
}
@keyframes shieldPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.guarantee__text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee__text strong { color: var(--text-primary); }

/* === TESTIMONIALS === */
.testimonials {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  animation: scrollTestimonials 40s linear infinite;
  width: max-content;
  will-change: transform;
}
.testimonials__track:hover { animation-play-state: paused; }

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 350px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-orange);
}

.testimonial-card__stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* === FAQ === */
.faq {
  max-width: 750px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--orange); }

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq__item.open .faq__chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.open .faq__answer {
  max-height: 300px;
}
.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(17, 17, 17, 0.9);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img,
.footer__logo {
  height: 80px;
  mix-blend-mode: lighten;
}

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

.footer__col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text-primary); }

.footer__sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-orange), transparent);
  margin-bottom: 2rem;
}

.footer__bottom {
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer__telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}
.footer__telegram:hover { color: var(--orange); }

/* === LEGAL PAGES === */
.legal-page {
  position: relative;
  z-index: 1;
  padding: 8rem 0 4rem;
}

.legal-page__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.legal-page__updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.legal-page p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}

.legal-page li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 0.15rem 0;
}

.legal-page a {
  color: var(--orange);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1023px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: block; }
  .mobile-menu { display: block; }

  .tools-grid { grid-template-columns: 1fr; }

  .timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 0;
    padding-left: 3rem;
  }
  .timeline__progress {
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
  }
  .timeline__progress-fill {
    width: 100% !important;
    height: 0%;
    transition: height 0.3s ease;
  }
  .timeline__step { text-align: left; }
  .timeline__dot {
    top: 50%;
    left: -3rem;
    transform: translate(-50%, -50%);
  }
  .timeline__icon { margin: 0 0 1rem 0; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }

  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }

  .hero { padding: 4rem 0 3rem; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__subtitle { font-size: 1rem; }
  .hero__badges { gap: 1rem; }
  .hero__badge-item { font-size: 0.75rem; }
  .hero__scroll-indicator { bottom: 1rem; }

  .pricing-table { font-size: 0.8125rem; }
  .pricing-table th, .pricing-table td { padding: 0.625rem 0.5rem; }
  .pricing-table-container { overflow-x: auto; }

  .footer__cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer__brand img, .footer__logo { height: 60px; }

  .tools-grid { gap: 1rem; }
  .tool-card { padding: 1.5rem; }

  .testimonial-card { width: 300px; }

}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__badges { flex-direction: column; align-items: center; }
  .footer__cols { grid-template-columns: 1fr; }
}
