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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

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

.nav-logo img {
  height: 32px;
  transition: filter 0.3s ease;
}

.nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.nav:not(.scrolled) .nav-links a:hover,
.nav:not(.scrolled) .nav-links a.active {
  color: #fff;
}

.nav.scrolled .nav-links a {
  color: #1a1a2e;
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: #0078C8;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-ghost {
  background: transparent;
}

.nav:not(.scrolled) .btn-ghost {
  color: rgba(255, 255, 255, 0.9);
}

.nav:not(.scrolled) .btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav.scrolled .btn-ghost {
  color: #1a1a2e;
}

.nav.scrolled .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background: #13B5EA;
  color: #fff;
}

.btn-primary:hover {
  background: #0ea5d9;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: #1a1a2e;
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #1a1a2e;
}

.btn-outline:hover {
  border-color: #0078C8;
  color: #0078C8;
  background: rgba(0, 120, 200, 0.05);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://prodmedia.tyga.host/public/numbors/app/bg-default-big.jpg') center center / cover no-repeat;
  z-index: 0;
  transition: opacity 1s ease;
}

.hero-bg-image.fade-out {
  opacity: 0;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-bg-video.ready {
  opacity: 1;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Indigo/purple overlay — differentiates from homepage's blue/teal */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(79, 70, 229, 0.6) 50%, rgba(30, 64, 175, 0.65) 100%);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: #50DCAA;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Benefits Section */
.benefits {
  padding: 5rem 2rem;
  background: #fff;
}

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

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 1.75rem;
  color: #1e40af;
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
}

/* How It Works */
.how-it-works {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.how-it-works-container {
  max-width: 900px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: #fff;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.features-text p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.features-checklist {
  list-style: none;
  display: grid;
  gap: 0.875rem;
}

.features-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #1a1a2e;
}

.features-checklist li i {
  color: #50DCAA;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Free Section */
.free-section {
  padding: 6rem 2rem;
  background: #f8fafc;
  text-align: center;
}

.free-container {
  max-width: 700px;
  margin: 0 auto;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.free-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.free-section p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f172a 100%);
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #0f172a;
  padding: 4rem 2rem 2rem;
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-brand img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.footer h6 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn i {
  font-size: 1.5rem;
}

.nav:not(.scrolled) .mobile-menu-btn i {
  color: #fff;
}

.nav.scrolled .mobile-menu-btn i {
  color: #1a1a2e;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-menu-drawer.show {
  transform: translateX(0);
}

.mobile-menu-drawer .drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-menu-drawer .drawer-header img {
  height: 28px;
}

.mobile-menu-drawer .drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu-drawer .drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.mobile-menu-drawer .drawer-links a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.mobile-menu-drawer .drawer-links a:hover {
  background: #f1f5f9;
}

.mobile-menu-drawer .drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.mobile-menu-drawer .drawer-actions .btn {
  width: 100%;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
  }

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

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

  .hero-cta {
    flex-direction: column;
  }

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

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .features-checklist {
    gap: 0.75rem;
  }

  .free-section h2 {
    font-size: 1.75rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

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