/* ============================================
   DegenToPro — Main Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@600;700;800;900&display=swap');

/* ============================================
   1. Global / Reset
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #9ca3af;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  color: #ffffff;
  line-height: 1.2;
  font-weight: 800;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(255, 200, 0, 0.3);
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 200, 0, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 200, 0, 0.4);
}

/* ============================================
   2. Layout
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section,
header,
footer,
main {
  position: relative;
  z-index: 1;
}

/* ============================================
   4. Utility Classes
   ============================================ */
.text-gold {
  color: #FFC800;
}

.text-green {
  color: #00ff66;
}

.text-red {
  color: #ff3b30;
}

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

.hidden {
  display: none;
}

/* ============================================
   5. Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 12px;
  padding: 14px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, #FFC800, #E5A800);
  color: #0a0a0a;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn-gold:hover::before {
  width: 300px;
  height: 300px;
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 200, 0, 0.35), 0 0 80px rgba(255, 200, 0, 0.15);
  color: #0a0a0a;
}

.btn-gold-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-gold-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 200, 0, 0.4);
  color: #FFC800;
}

.btn-pill {
  border-radius: 50px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ============================================
   6. Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  clip-path: circle(50%);
  filter: drop-shadow(0 0 8px rgba(255,200,0,0.3));
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  clip-path: circle(50%);
  filter: drop-shadow(0 0 8px rgba(255,200,0,0.3));
}

.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-degen {
  color: #ffffff;
}

.brand-to {
  color: #9ca3af;
}

.brand-pro {
  color: #FFC800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover {
  color: #FFC800;
}

.nav-link.active {
  color: #FFC800;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFC800;
  border-radius: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: color 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
  color: #FFC800;
  background: rgba(255, 200, 0, 0.08);
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 80px 24px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d1d5db;
  text-decoration: none;
  padding: 12px 24px;
  transition: color 0.2s;
}

.mobile-link:hover,
.mobile-link:active {
  color: #FFC800;
}

.mobile-link.mobile-cta {
  margin-top: 16px;
  background: linear-gradient(135deg, #FFC800, #E5A800);
  color: #000;
  border-radius: 50px;
  padding: 14px 40px;
  font-weight: 800;
}

/* ============================================
   7. Hero Section
   ============================================ */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 40px;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease forwards;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 200, 0, 0.08);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFC800;
}

.badge-gold-border {
  border: 1px solid rgba(255, 200, 0, 0.25);
}

.badge-verified {
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid rgba(0, 255, 102, 0.2);
  color: #00ff66;
}

.badge-trial {
  background: rgba(255, 200, 0, 0.08);
  border: 1px solid rgba(255, 200, 0, 0.2);
  color: #FFC800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
}

.badge-limited {
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.2);
  color: #ff3b30;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  max-width: 900px;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #9ca3af;
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-sub-cta {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Hero social proof avatars */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.35s forwards;
  opacity: 0;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  margin-left: -10px;
  box-shadow: 0 0 12px rgba(255,200,0,0.15);
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-members-text {
  font-size: 0.875rem;
  color: #9ca3af;
}

.hero-members-text strong {
  color: #FFC800;
  font-weight: 800;
}

/* Ticker — bold, glowing, infinite scroll, full width */
.hero-ticker {
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(255,200,0,0.06) 0%, rgba(255,200,0,0.12) 50%, rgba(255,200,0,0.06) 100%);
  border-top: 1px solid rgba(255,200,0,0.20);
  border-bottom: 1px solid rgba(255,200,0,0.20);
}

/* Fade edges */
.hero-ticker::before,
.hero-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.hero-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #0a0a0a, transparent);
}

.hero-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #0a0a0a, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.ticker-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 800;
  color: #FFC800;
  letter-spacing: 0.01em;
  text-shadow: 0 0 20px rgba(255,200,0,0.3);
}

.ticker-emoji {
  font-size: 1.1rem;
}

.ticker-separator {
  color: rgba(255,200,0,0.30);
  padding: 0 6px;
  font-size: 0.5rem;
}

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

/* ============================================
   8. Stats Bar
   ============================================ */
.stats-bar {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid #FFC800;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   8b. Performance Dashboard & Estimator
   ============================================ */
.performance-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.performance-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,200,0,0.08) 0%, transparent 55%);
  pointer-events: none; z-index: -1;
}

/* Summary tiles row */
.perf-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.perf-tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}

.perf-tile-label {
  display: block;
  font-size: 0.6875rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.perf-tile-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}

/* Dashboard: chart left, calendar right */
.perf-dashboard {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Chart card */
.perf-chart-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.perf-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.perf-chart-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #d1d5db;
}

.perf-chart-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 3px;
}

.perf-chart-tab {
  padding: 5px 14px;
  border: none;
  border-radius: 6px;
  background: none;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.perf-chart-tab.active {
  background: rgba(255,200,0,0.15);
  color: #FFC800;
}

.perf-chart-tab:hover:not(.active) { color: #9ca3af; }

.perf-chart-area {
  flex: 1;
  min-height: 200px;
}

.perf-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.perf-chart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.perf-chart-total {
  font-size: 0.875rem;
  color: #9ca3af;
}

.perf-chart-total strong {
  font-weight: 800;
}

.perf-chart-note {
  font-size: 0.75rem;
  color: #4b5563;
}

.perf-disclaimer-bottom {
  font-size: 0.75rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 48px;
}

/* Calendar card */
.perf-calendar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
}

.perf-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.perf-cal-month {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.perf-cal-nav {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  color: #9ca3af;
  font-size: 1rem;
  padding: 6px 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.perf-cal-nav:hover { color: #FFC800; border-color: rgba(255,200,0,0.3); }

.perf-cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.perf-cal-days-header span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.perf-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  position: relative;
  transition: all 0.2s;
  gap: 2px;
}

.cal-cell.empty { visibility: hidden; }

.cal-cell.win {
  background: rgba(0,255,102,0.10);
  color: #00ff66;
  border: 1px solid rgba(0,255,102,0.15);
}

.cal-cell.loss {
  background: rgba(255,59,48,0.10);
  color: #ff3b30;
  border: 1px solid rgba(255,59,48,0.15);
}

.cal-cell.today {
  border: 2px solid #FFC800;
  color: #FFC800;
}

.cal-cell .cal-day { font-weight: 700; font-size: 0.875rem; }
.cal-cell .cal-pnl { font-size: 0.625rem; font-weight: 700; }

.perf-cal-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cal-sum-item { text-align: center; }

.cal-sum-label {
  display: block;
  font-size: 0.6875rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.cal-sum-val {
  font-size: 1.125rem;
  font-weight: 800;
}

.text-green { color: #00ff66; }

/* Estimator */
.estimator-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,200,0,0.12);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.estimator-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(255,200,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.estimator-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}

.estimator-subtitle {
  color: #9ca3af;
  font-size: 0.9375rem;
  margin-bottom: 32px;
  position: relative;
}

.estimator-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  position: relative;
}

.estimator-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 12px;
}

.estimator-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.estimator-input-wrap:focus-within {
  border-color: #FFC800;
  box-shadow: 0 0 0 3px rgba(255,200,0,0.12);
}

.estimator-prefix {
  padding: 0 4px 0 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFC800;
}

.estimator-input {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 16px 14px 4px;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: inherit;
  color: #fff;
  outline: none;
  width: 100%;
}

.estimator-input::-webkit-inner-spin-button,
.estimator-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.estimator-slider {
  width: 100%;
  margin: 16px 0;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(255,255,255,0.10);
  border-radius: 2px;
  outline: none;
}

.estimator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFC800;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255,200,0,0.4);
}

.estimator-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFC800;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(255,200,0,0.4);
}

.estimator-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.estimator-preset {
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  color: #9ca3af;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.estimator-preset:hover {
  color: #FFC800;
  border-color: rgba(255,200,0,0.3);
  background: rgba(255,200,0,0.06);
}

.estimator-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.estimator-result-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.estimator-result-card.est-highlight {
  border-color: rgba(255,200,0,0.25);
  background: rgba(255,200,0,0.05);
  box-shadow: 0 0 40px rgba(255,200,0,0.06);
}

.est-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFC800;
  color: #000;
  font-size: 0.625rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.est-label {
  font-size: 0.8125rem;
  color: #9ca3af;
  font-weight: 600;
}

.est-value {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}

.est-sub {
  font-size: 0.75rem;
  color: #6b7280;
}

.estimator-disclaimer {
  font-size: 0.75rem;
  color: #4b5563;
  margin-top: 24px;
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .perf-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .perf-tiles .perf-tile:last-child {
    grid-column: span 2;
  }
  .perf-dashboard {
    grid-template-columns: 1fr;
  }
  .estimator-body {
    grid-template-columns: 1fr;
  }
  .estimator-results {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   8d. Supported Bookies & Markets
   ============================================ */
.bookies-section,
.markets-section {
  padding: 48px 0;
  overflow: hidden;
  position: relative;
}

.bookies-section {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.markets-section {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.bookies-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 28px;
}

.logo-scroll {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-scroll::before,
.logo-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-scroll::before {
  left: 0;
  background: linear-gradient(90deg, #0a0a0a, transparent);
}

.logo-scroll::after {
  right: 0;
  background: linear-gradient(270deg, #0a0a0a, transparent);
}

.logo-scroll-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.logo-scroll-left {
  animation: scrollLeft 35s linear infinite;
}

.logo-scroll-right {
  animation: scrollRight 40s linear infinite;
}

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

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

.bookie-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #d1d5db;
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.01em;
}

.bookie-logo:hover {
  border-color: rgba(255,200,0,0.25);
  background: rgba(255,200,0,0.05);
  transform: translateY(-2px);
}

.bookie-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
}

.market-tag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(255,200,0,0.06), rgba(255,200,0,0.02));
  border: 1px solid rgba(255,200,0,0.12);
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFC800;
  white-space: nowrap;
  transition: all 0.3s;
}

.market-tag:hover {
  background: rgba(255,200,0,0.10);
  border-color: rgba(255,200,0,0.30);
  transform: scale(1.03);
}

.market-emoji {
  font-size: 1.125rem;
}

/* ============================================
   9. My Story Section
   ============================================ */
.my-story {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text {
  display: flex;
  flex-direction: column;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.story-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #9ca3af;
}

.achievement-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: #9ca3af;
}

.achievement-dot {
  width: 10px;
  height: 10px;
  background: #FFC800;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 200, 0, 0.3);
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: none;
  border: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)) drop-shadow(0 0 60px rgba(255,200,0,0.08));
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ============================================
   10. How It Works
   ============================================ */
.how-it-works {
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 200, 0, 0.1);
  border: 2px solid rgba(255, 200, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFC800;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Step images */
.step-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: none;
  border: none;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4)) drop-shadow(0 0 40px rgba(255,200,0,0.06));
}

.step-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* ============================================
   10b. Software Sections (Sports & Racing)
   ============================================ */
.software-section {
  padding: 100px 0;
}

.software-section-alt {
  background: rgba(255, 200, 0, 0.02);
}

.software-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.software-split:last-child {
  margin-bottom: 0;
}

.software-split-reverse {
  direction: rtl;
}

.software-split-reverse > * {
  direction: ltr;
}

.software-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.software-desc {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 24px;
}

.software-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.software-features-list li {
  font-size: 0.9375rem;
  color: #d1d5db;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.software-features-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #00ff66;
  font-weight: 700;
  font-size: 1rem;
}

.software-image {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  background: none;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5)) drop-shadow(0 0 80px rgba(255,200,0,0.10));
}

.software-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .software-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .software-split-reverse {
    direction: ltr;
  }

  .software-heading {
    font-size: 1.5rem;
  }
}

/* ============================================
   11. Features Section
   ============================================ */
.features {
  padding: 100px 0;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #6b7280;
  max-width: 600px;
  margin: -8px auto 60px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 200, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: #FFC800;
  transition: background 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(255, 200, 0, 0.15);
}

.feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ============================================
   12. Pricing Section
   ============================================ */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
}

.pricing-grid.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-popular {
  border: 2px solid transparent;
  background:
    linear-gradient(#0f0f0f, #0f0f0f) padding-box,
    linear-gradient(135deg, #FFC800, #E5A800, #FFC800) border-box;
  box-shadow: 0 0 40px rgba(255, 200, 0, 0.08);
}

.pricing-card-popular:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 200, 0, 0.12);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, #FFC800, #E5A800);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-plan {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.pricing-badge {
  display: inline-block;
  font-weight: 600;
  border-radius: 50px;
}

.pricing-price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 0.9375rem;
  color: #6b7280;
  font-weight: 500;
}

.price-amount-custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFC800;
  line-height: 1.3;
}

/* Desktop/mobile visibility */
.mobile-only { display: none; }
.floating-cta.mobile-only { display: none; }

@media (max-width: 767px) {
  .mobile-only { display: block; }
  .floating-cta.mobile-only { display: block; }
  .desktop-only-card { display: none !important; }

  .pricing-grid.pricing-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Pricing toggle */
.pricing-toggle {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
}

.toggle-btn {
  flex: 1;
  padding: 10px 16px;
  background: none;
  border: none;
  border-radius: 8px;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: linear-gradient(135deg, #FFC800, #E5A800);
  color: #000;
}

.toggle-save {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #00ff66;
  margin-left: 4px;
}

.toggle-btn.active .toggle-save {
  color: #065f46;
}

/* 90-Day Bootcamp — Premium card */
.pricing-card-bootcamp {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,200,0,0.06) 0%, rgba(10,10,10,0.98) 40%, rgba(255,200,0,0.03) 100%);
  border: 2px solid rgba(255,200,0,0.30);
  box-shadow:
    0 0 40px rgba(255,200,0,0.08),
    0 0 80px rgba(255,200,0,0.04),
    0 20px 60px rgba(0,0,0,0.4);
  transform: scale(1.03);
}

.pricing-card-bootcamp:hover {
  border-color: rgba(255,200,0,0.50);
  box-shadow:
    0 0 60px rgba(255,200,0,0.12),
    0 0 120px rgba(255,200,0,0.06),
    0 20px 60px rgba(0,0,0,0.4);
  transform: scale(1.05);
}

.bootcamp-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 20%, rgba(255,200,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.bootcamp-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FFC800, #FFD700);
  color: #000;
  font-size: 0.6875rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 12px rgba(255,200,0,0.3);
}

.bootcamp-title {
  color: #FFC800 !important;
  font-size: 1.3rem !important;
}

.bootcamp-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: #FFC800;
  display: block;
  text-shadow: 0 0 30px rgba(255,200,0,0.2);
}

.bootcamp-sub {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.bootcamp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,200,0,0.25), transparent);
  margin: 20px 0;
}

.bootcamp-check {
  color: #FFC800 !important;
}

.btn-bootcamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #FFC800 0%, #FFD700 50%, #E5A800 100%);
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(255,200,0,0.3);
}

.btn-bootcamp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,200,0,0.4);
}

.bootcamp-spots {
  text-align: center;
  font-size: 0.8125rem;
  color: #ff3b30;
  margin-top: 14px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@media (max-width: 767px) {
  .pricing-card-bootcamp {
    transform: scale(1);
  }
  .pricing-card-bootcamp:hover {
    transform: scale(1);
  }
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: #9ca3af;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.check-icon {
  color: #00ff66;
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ============================================
   13. Testimonials
   ============================================ */
.testimonials {
  padding: 100px 0;
  overflow: visible;
}

.section-badge-wrapper {
  text-align: center;
  margin-bottom: 16px;
}

/* Infinite scroll review marquee */
.review-marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}

.review-marquee::before,
.review-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0a0a0a, transparent);
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #0a0a0a, transparent);
}

.review-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.review-scroll-left {
  animation: reviewScrollLeft 40s linear infinite;
}

.review-scroll-right {
  animation: reviewScrollRight 45s linear infinite;
}

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

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

.review-card {
  flex: 0 0 360px;
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: rgba(255,200,0,0.20);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255,200,0,0.20);
}

.review-body {
  flex: 1;
  min-width: 0;
}

.review-stars {
  color: #FFC800;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-body p {
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}

.review-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
}

.review-loc {
  color: #6b7280;
  font-weight: 500;
  margin-left: 4px;
}

/* ============================================
   14. FAQ Section
   ============================================ */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 760px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #FFC800;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFC800;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ============================================
   15. Final CTA Section
   ============================================ */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 780px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 560px;
  line-height: 1.7;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: 50px;
  margin-bottom: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.urgency-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ff3b30;
}

.cta-trust {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 8px;
}

/* ============================================
   16. Footer
   ============================================ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 320px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
}

.footer-nav-list li a {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-nav-list li a:hover {
  color: #FFC800;
}

.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: #FFC800;
}

.footer-email {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #FFC800;
}

.footer-legal {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-copyright {
  font-size: 0.8125rem;
  color: #6b7280;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.8125rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #FFC800;
}

/* ============================================
   17. Modal / Application Form
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-container {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  z-index: 1;
  animation: scaleIn 0.3s ease forwards;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.modal-content {
  position: relative;
}

/* Form Progress */
.form-progress {
  margin-bottom: 40px;
}

.form-step-counter {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
}

.form-progress-bar {
  display: flex;
  gap: 4px;
  width: 100%;
}

.progress-segment {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  transition: background 0.4s ease;
}

.progress-segment.active {
  background: linear-gradient(90deg, #FFC800, #E5A800);
}

/* Form Question Area */
.form-question-area {
  min-height: 200px;
}

.form-question-container {
  min-height: 200px;
}

/* Form Slides */
.form-slide {
  display: none;
  animation: slideInRight 0.3s ease forwards;
}

.form-slide.active {
  display: block;
}

.form-label {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.4;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.9375rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder {
  color: #6b7280;
}

.form-input:focus {
  border-color: #FFC800;
  box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.9375rem;
  min-height: 100px;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-textarea::placeholder {
  color: #6b7280;
}

.form-textarea:focus {
  border-color: #FFC800;
  box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.1);
}

/* Form Options (radio/check cards) */
.form-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-option {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-option:hover {
  border-color: rgba(255, 200, 0, 0.3);
}

.form-option.selected {
  border-color: #FFC800;
  background: rgba(255, 200, 0, 0.05);
}

.form-option-radio,
.form-option-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.form-option-check {
  border-radius: 6px;
}

.form-option.selected .form-option-radio,
.form-option.selected .form-option-check {
  border-color: #FFC800;
  background: #FFC800;
}

.form-option.selected .form-option-radio::after,
.form-option.selected .form-option-check::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #0a0a0a;
  border-radius: 50%;
}

.form-option.selected .form-option-check::after {
  border-radius: 1px;
}

.form-option-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
}

.form-footer-text {
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 16px;
}

.form-bottom-bar {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.form-bottom-fill {
  height: 4px;
  background: linear-gradient(90deg, #FFC800, #E5A800);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Application form wrapper */
.application-form {
  position: relative;
}

/* ============================================
   18. Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.4), 0 0 60px rgba(255, 200, 0, 0.1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.6s; }
.animate-on-scroll:nth-child(8) { transition-delay: 0.7s; }

.cta-glow {
  animation: glow 3s ease-in-out infinite;
}

/* ============================================
   19. Responsive Design
   ============================================ */

/* Large screens (max 1023px) */
@media (max-width: 1023px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

/* Tablet (max 767px) */
@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 80%;
    background: radial-gradient(ellipse at center top, rgba(255,200,0,0.12) 0%, rgba(255,200,0,0.04) 40%, transparent 70%);
    z-index: -1;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: radial-gradient(ellipse at center bottom, rgba(255,200,0,0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
  }

  .nav-socials {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .pricing-grid,
  .pricing-grid.pricing-grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Small screens (max 639px) */
@media (max-width: 639px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image {
    max-height: 400px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .testimonial-card {
    flex: 0 0 300px;
  }

  .modal-container {
    padding: 36px 24px;
    margin: 16px;
    border-radius: 20px;
  }

  .form-options {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-cta-group {
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .final-cta .cta-heading {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    scroll-snap-align: start;
  }
}

/* Desktop large — ensure hamburger hidden */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* ============================================
   ENHANCED BACKGROUND — Grid + Glow
   ============================================ */

/* Full-page grid overlay */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,200,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,200,0,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -10;
  pointer-events: none;
}

/* Multiple glow orbs — fixed so they persist while scrolling */
.glow-orb-1 {
  position: fixed;
  top: -15%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255,200,0,0.18) 0%, rgba(255,180,0,0.06) 35%, transparent 65%);
  z-index: -9;
  pointer-events: none;
}

.glow-orb-2 {
  position: fixed;
  bottom: -15%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,140,0,0.14) 0%, rgba(255,160,0,0.04) 40%, transparent 65%);
  z-index: -9;
  pointer-events: none;
}

.glow-orb-3 {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,200,0,0.08) 0%, transparent 60%);
  z-index: -9;
  pointer-events: none;
}

/* Section-level glow accents — desktop only */
.hero { position: relative; }

@media (min-width: 768px) {
  .hero { overflow: hidden; }

  .hero::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,200,0,0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,200,0,0.12) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
  }
}

.software-section,
.pricing,
.final-cta {
  position: relative;
  overflow: hidden;
}

.software-section::before,
.pricing::before,
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,200,0,0.10) 0%, transparent 55%);
  z-index: -1;
  pointer-events: none;
}

/* Floating mobile CTA — hidden until scrolled past hero */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 8000;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FFC800, #E5A800);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,200,0,0.35), 0 0 40px rgba(255,200,0,0.10);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:active {
  transform: scale(0.95);
}

/* Smaller toast on mobile */
@media (max-width: 639px) {
  .d2p-toast {
    right: 8px;
    left: 8px;
    bottom: 80px;
    max-width: none;
    padding: 12px 14px;
    font-size: 0.8125rem;
  }
  .toast-icon { font-size: 1.2rem; }
  .toast-type { font-size: 0.75rem; }
  .toast-blurred { font-size: 0.75rem; }
  .toast-meta { font-size: 0.6875rem; }
}

/* ============================================
   EMAIL POPUP
   ============================================ */
.email-popup {
  position: fixed;
  inset: 0;
  z-index: 8500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}

.email-popup-card {
  position: relative;
  width: 90%;
  max-width: 440px;
  background: #0d0d14;
  border: 1px solid rgba(255,200,0,0.15);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(255,200,0,0.05);
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.email-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.email-popup-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.email-popup-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.email-popup-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.email-popup-desc {
  color: #9ca3af;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.email-popup-form {
  display: flex;
  gap: 8px;
}

.email-popup-input {
  flex: 1;
  height: 52px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.email-popup-input:focus {
  border-color: #FFC800;
  box-shadow: 0 0 0 3px rgba(255,200,0,0.12);
}

.email-popup-input::placeholder {
  color: #6b7280;
}

.email-popup-btn {
  flex-shrink: 0;
  padding: 0 24px;
  height: 52px;
  background: linear-gradient(135deg, #FFC800, #E5A800);
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: 800;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.email-popup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,200,0,0.3);
}

.email-popup-note {
  font-size: 0.75rem;
  color: #4b5563;
  margin-top: 14px;
}

@media (max-width: 480px) {
  .email-popup-form {
    flex-direction: column;
  }
  .email-popup-card {
    padding: 32px 20px;
  }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.d2p-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(13,13,20,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,200,0,0.20);
  border-radius: 14px;
  padding: 16px 18px;
  max-width: 360px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 40px rgba(255,200,0,0.06);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.d2p-toast.toast-visible {
  transform: translateX(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
  animation: toastRing 0.6s ease;
}

@keyframes toastRing {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(8deg); }
  80% { transform: rotate(-5deg); }
}

.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.toast-type {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #FFC800;
}

.toast-league {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0a0a0a;
  background: rgba(255,200,0,0.9);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toast-match {
  margin-bottom: 6px;
}

.toast-blurred {
  font-size: 0.875rem;
  font-weight: 600;
  color: #d1d5db;
  filter: blur(5px);
  user-select: none;
}

.toast-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
}

.toast-bookie {
  font-weight: 700;
  color: #9ca3af;
}

.toast-odds {
  color: #6b7280;
}

.toast-edge {
  color: #00ff66;
  font-weight: 700;
}

.toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  transition: color 0.2s;
}

.toast-close:hover {
  color: #fff;
}

@media (max-width: 639px) {
  .d2p-toast {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
  }
}

/* ============================================
   APPLICATION FORM MODAL
   ============================================ */

.form-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-modal-panel {
  position: relative;
  width: 95%;
  max-width: 540px;
  background: #0d0d14;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 80px rgba(255,200,0,0.05);
}

.form-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.form-modal-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.form-modal-inner {
  padding: 40px 32px 24px;
  flex: 1;
  overflow-y: auto;
}

.form-progress-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.form-counter {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  font-variant-numeric: tabular-nums;
  min-width: 50px;
}

.form-segments {
  display: flex;
  gap: 4px;
  align-items: center;
}

.form-body {
  min-height: 280px;
}

.form-label {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  font-family: 'Montserrat', 'Inter', sans-serif;
}

.form-input {
  width: 100%;
  height: 58px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 0 20px;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
  border-color: #FFC800;
  box-shadow: 0 0 0 3px rgba(255,200,0,0.15);
}

.form-input::placeholder {
  color: #6b7280;
}

.form-textarea {
  width: 100%;
  min-height: 130px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  font-family: inherit;
  color: #fff;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-textarea:focus {
  border-color: #FFC800;
  box-shadow: 0 0 0 3px rgba(255,200,0,0.15);
}

.form-textarea::placeholder {
  color: #6b7280;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 15px;
  font-weight: 500;
  color: #d1d5db;
}

.form-option:hover {
  border-color: rgba(255,200,0,0.4);
  background: rgba(255,200,0,0.05);
}

.form-option.selected {
  border-color: #FFC800;
  background: rgba(255,200,0,0.08);
  color: #fff;
}

.form-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.form-option.selected .form-option-radio {
  border-color: #FFC800;
}

.form-option.selected .form-option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFC800;
}

.form-nav-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.form-back-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  color: #9ca3af;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.form-back-btn:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

.form-next-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #FFC800, #E5A800);
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.form-next-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(255,200,0,0.3);
}

.form-skip-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s;
  text-align: center;
}

.form-skip-btn:hover {
  color: #FFC800;
}

.form-disclaimer {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #4b5563;
}

.form-progress-bottom {
  height: 3px;
  background: rgba(255,255,255,0.05);
}

.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFC800, #FFE066);
  transition: width 0.4s ease;
  width: 0%;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 639px) {
  .form-modal-panel {
    width: 94%;
    max-width: 100%;
    border-radius: 16px;
    max-height: 55vh;
    position: relative;
    margin-top: 10vh;
    margin-bottom: auto;
    overflow-y: auto;
  }
  .form-modal-inner {
    padding: 28px 20px 20px;
  }
  .form-modal {
    align-items: flex-start;
  }
  .form-body {
    min-height: 180px;
  }
}
/* Cloudflare Pages deploy */
