:root {
  --bg-dark: #070707;
  --bg-card: #0f0f0f;
  --bg-elevated: #181818;
  --primary-orange: #FF8C00;
  --primary-glow: rgba(255, 140, 0, 0.35);
  --primary-soft: rgba(255, 140, 0, 0.08);
  --text-main: #ffffff;
  --text-muted: #8a8a8a;
  --text-dim: #555555;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--primary-orange);
  color: var(--bg-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-soft);
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 50px;
  color: var(--primary-orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
}

.highlight {
  color: var(--primary-orange);
}

/* Scroll Progress */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange), #ffaa33);
  width: 0%;
  box-shadow: 0 0 12px var(--primary-glow);
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo .dot {
  color: var(--primary-orange);
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-small {
  background: var(--primary-orange);
  color: white;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-small:hover {
  box-shadow: 0 0 24px var(--primary-glow);
  transform: translateY(-2px);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, transparent 65%);
  filter: blur(80px);
  will-change: transform;
}

.hero-gradient-2 {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  bottom: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.06) 0%, transparent 60%);
  filter: blur(60px);
  will-change: transform;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--primary-orange);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .line {
  display: block;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}

.scroll-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--text-dim);
  border-bottom: 1.5px solid var(--text-dim);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
  opacity: 0;
}

.scroll-arrow:nth-child(1) {
  animation-delay: 0s;
}

.scroll-arrow:nth-child(2) {
  animation-delay: 0.25s;
}

.scroll-arrow:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes scroll-bounce {
  0%, 100% {
    opacity: 0;
    transform: rotate(45deg) translateY(-2px);
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(45deg) translateY(4px);
  }
}

.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-orange);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 32px var(--primary-glow);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

.cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--primary-glow);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  position: relative;
}

.float-el {
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}

.float-el .icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.float-el .icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.float-el .icon.orange {
  background: rgba(255, 140, 0, 0.15);
  color: var(--primary-orange);
}

.float-el .icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.float-el-1 {
  top: 8%;
  right: -18%;
}

.float-el-2 {
  bottom: 12%;
  left: -22%;
}

.float-el-3 {
  bottom: 35%;
  right: -28%;
}

/* Phone mockup */
.phone-mockup {
  width: 280px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(255, 140, 0, 0.06);
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-mockup .slide {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.phone-mockup .slide.active {
  opacity: 1;
  position: relative;
}

.phone-mockup .slideshow-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

/* Features */
.features {
  background: linear-gradient(to bottom, var(--bg-dark), #0a0a0a);
}

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

.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 140, 0, 0.06), transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(255, 140, 0, 0.2);
  transform: translateY(-6px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-orange);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Stats */
.stats {
  padding: 80px 0;
  background: linear-gradient(to bottom, #0a0a0a, var(--bg-dark));
}

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

.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.stat-divider {
  width: 40px;
  height: 2px;
  background: var(--primary-orange);
  margin: 12px auto;
  border-radius: 1px;
  opacity: 0.4;
}

/* Comparison */
.comparison {
  background: linear-gradient(to bottom, var(--bg-dark), #0a0a0a);
}

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

.comp-box {
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
}

.comp-box.old-way {
  border-color: rgba(239, 68, 68, 0.15);
  background: rgba(239, 68, 68, 0.02);
}

.comp-box.bolt-way {
  border-color: rgba(255, 140, 0, 0.2);
  background: rgba(255, 140, 0, 0.03);
}

.comp-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.comp-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-box li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-muted);
}

.comp-box.bolt-way li {
  color: var(--text-main);
}

.comp-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.comp-icon.check {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.comp-icon.cross {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* Fraud Prevention */
.fraud-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 48px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 140, 0, 0.15);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.03), var(--bg-card));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fraud-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.fraud-card h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.fraud-card > p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.fraud-card > p strong {
  color: var(--text-main);
}

.fraud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.fraud-item {
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  text-align: center;
}

.fraud-item .fraud-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 140, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-orange);
}

.fraud-icon svg {
  width: 22px;
  height: 22px;
}

.fraud-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fraud-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.fraud-badge-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fraud-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--primary-soft);
  border: 1px solid rgba(255, 140, 0, 0.12);
  color: var(--primary-orange);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Privacy */
.privacy {
  text-align: center;
}

.privacy-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.privacy-card h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.privacy-card p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.flow-node {
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-node.active {
  border-color: rgba(255, 140, 0, 0.2);
  color: var(--text-main);
}

.flow-node .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-orange);
}

.flow-arrow {
  color: var(--text-dim);
  font-size: 1.2rem;
}

/* Pricing */
.pricing {
  background: linear-gradient(to bottom, #0a0a0a, var(--bg-dark));
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: flex-start;
}

.price-card {
  background: var(--bg-card);
  padding: 48px 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  width: 380px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.price-card.featured {
  border-color: rgba(255, 140, 0, 0.25);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 140, 0, 0.03));
  transform: scale(1.04);
  z-index: 2;
}

.badge-pro {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-orange), #ffaa33);
  color: white;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount .currency {
  font-size: 1.8rem;
  vertical-align: super;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-features li {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.price-features li .check {
  color: var(--primary-orange);
  flex-shrink: 0;
}

.price-features li.disabled {
  opacity: 0.35;
}

.price-features li.disabled .check {
  color: var(--text-dim);
}

.price-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-main);
  text-decoration: none;
  cursor: pointer;
}

.price-btn:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border-hover);
}

.price-btn.pro {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
  box-shadow: 0 8px 24px var(--primary-glow);
}

.price-btn.pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--primary-glow);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  cursor: grab;
}

.testimonials-track:active {
  cursor: grabbing;
}

.testimonial-card {
  min-width: 380px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  flex-shrink: 0;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--primary-orange);
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 1px solid rgba(255, 140, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Changelog */
.changelog {
  background: linear-gradient(to bottom, var(--bg-dark), #050505);
}

.changelog-inner {
  max-width: 640px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-orange), transparent);
  opacity: 0.2;
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-orange);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 12px var(--primary-glow);
  z-index: 1;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.timeline-version {
  font-weight: 800;
  font-size: 1rem;
  padding: 2px 12px;
  border-radius: 6px;
  background: var(--primary-soft);
  border: 1px solid rgba(255, 140, 0, 0.15);
  color: var(--primary-orange);
}

.timeline-date {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.timeline-list {
  list-style: none;
}

.timeline-list li {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.4;
}

/* CTA Banner */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 140, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .cta-main {
  font-size: 1.1rem;
  padding: 18px 40px;
}

/* Footer */
footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--glass-border);
  background: #050505;
}

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

.footer-brand .logo {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.back-to-top:hover {
  background: var(--primary-soft);
  border-color: rgba(255, 140, 0, 0.2);
  color: var(--primary-orange);
  transform: translateY(-3px);
}

/* Legal Pages */
.legal-page {
  padding: 140px 0 80px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-content .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  display: block;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary-orange);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* GSAP helper */
.gsap-reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 40px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

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

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

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

  .float-el { display: none; }
  .scroll-indicator { display: none; }
}

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

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

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

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    width: 100%;
    max-width: 400px;
  }

  .price-card.featured {
    transform: none;
  }

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

  .fraud-card {
    padding: 40px 24px;
  }

  .fraud-card h2 {
    font-size: 1.8rem;
  }

  .testimonial-card {
    min-width: 300px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
  }

  .mobile-toggle {
    display: flex;
  }

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

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

  .phone-mockup {
    width: 220px;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }

  .privacy-card {
    padding: 40px 24px;
  }

  .privacy-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .legal-content {
    padding: 32px 24px;
  }

  .legal-content h1 {
    font-size: 1.8rem;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .phone-mockup {
    width: 180px;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }

  .privacy-card {
    padding: 40px 24px;
  }

  .privacy-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .legal-content {
    padding: 32px 24px;
  }

  .legal-content h1 {
    font-size: 1.8rem;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .phone-mockup {
    width: 200px;
  }

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

  .cta-main, .cta-secondary {
    width: 100%;
    justify-content: center;
  }
}
