/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', Poppins, -apple-system, BlinkMacSystemFont, Garamond, serif, 'Segoe UI', sans-serif;
  background:
    linear-gradient(to bottom, #191919, #000000),
    repeating-linear-gradient(to right,
      rgba(255, 255, 255, 0) 0px,
      rgba(255, 255, 255, 0) 1px,
      transparent 1px,
      transparent 60px),
    repeating-linear-gradient(to bottom,
      rgba(255, 255, 255, 0.08) 0px,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 60px);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

#fluid-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  /* Force full viewport width */
  height: 100vh;
  /* Force full viewport height */
  z-index: 1;
  /* Adjust this so it's above your grid but below your text */
  pointer-events: none;
  /* Allows you to still click buttons like 'Get Started' */
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}

.logo-box {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000000;
  font-size: 20px;
  margin: 0 auto;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.preloader-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* Global Grid Background */
.global-grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  opacity: 0.6;
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 5;
}

.main-content {
  position: relative;
  z-index: 10;
  perspective: 1200px;
}

.img-small {
  position: relative;
  width: 36px;
  height: 36px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: #2e2e2e;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 0.6s ease forwards;
  animation-delay: 0.5s;
}

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

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.7s;
}

.navbar-logo .logo-box {
  width: 45px;
  height: 45px;
  font-size: 12px;
  margin: 0;

}

.logo-text {
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
}

.navbar-menu {
  display: flex;
  gap: 30px;
}

.navbar-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #2e2e2e;
  padding: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 0.4s ease forwards;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.nav-link:nth-child(1) {
  animation-delay: 0.8s;
}

.nav-link:nth-child(2) {
  animation-delay: 0.9s;
}

.nav-link:nth-child(3) {
  animation-delay: 1.0s;
}

.nav-link:nth-child(4) {
  animation-delay: 1.1s;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

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

.navbar-actions {
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 1.2s;
}

.btn-primary-small,
.btn-secondary-small {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary-small {
  background: #ffffff;
  color: #000000;
}

.btn-primary-small:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

.btn-secondary-small {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary-small:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Hero Section */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 60%,
      rgba(0, 0, 0, 1) 100%);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom,
      #3a3a3a 0%,
      #1a1a1a 50%,
      #000000 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  opacity: 0;
  animation: fadeInDown 0.5s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.status-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.status-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.status-dot-inner {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.status-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

/* Hero Heading */
.hero-heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 0;
  font-family: 'Abril Fatface', serif;
  position: relative;
}

.heading-line-1,
.heading-line-2 {
  display: block;
}

.heading-line-1 {
  color: #ffffff;
}

.heading-line-2 {
  color: #9ca3af;
}

.word-animate {
  display: inline-block;
  margin-right: 12px;
  opacity: 0;
  animation: wordFadeIn 0.5s ease forwards;
}

@keyframes wordFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-description {
  font-size: 18px;
  color: #9ca3af;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
  position: relative;
}

/* Animated Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
  z-index: 20;
  position: relative;
}

.animated-button-wrapper {
  position: relative;
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.button-border-rect {
  fill: transparent;
  stroke-width: 2;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawBorder 1.5s ease-out forwards;
  animation-delay: var(--delay);
}

@keyframes drawBorder {
  to {
    stroke-dashoffset: 0;
  }
}

.primary-border {
  stroke: #ffffff;
}

.secondary-border {
  stroke: rgba(255, 255, 255, 0.4);
}

.animated-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
  width: 100%;
  height: 100%;
  justify-content: center;
  border-radius: 8px;
  opacity: 0;
  animation: fadeInText 0.5s ease forwards;
  animation-delay: calc(var(--delay) + 1.2s);
  transition: all 0.3s ease;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

/* Button specific styles (post-animation) */
.btn-primary {
  background-color: #ffffff;
}

.btn-primary:hover {
  background: rgba(254, 252, 252, );
}

.btn-secondary {
  color: #ffffff;
}

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

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-top: 24px;
  font-size: 12px;
}

.trust-badge {
  position: relative;
  padding: 10px 26px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: trustBadgeFadeIn 0.4s ease forwards;
  z-index: 20;
}

@keyframes trustBadgeFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.trust-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) scale(1.05);
}

.trust-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.trust-badge:hover .trust-shimmer {
  opacity: 1;
}

.trust-badge span {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
}

.trust-icon {
  font-weight: bold;
  margin-right: 6px;
}

.trust-text {
  color: #d1d5db;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
  position: relative;
}

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

.stat-border {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  color: #6b7280;
  font-size: 12px;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, #000000, transparent);
  pointer-events: none;
}

.model {
  position: absolute;
  top: -60px;
  right: -50%;
  scale: 1.8;
  transition: all 10s ease-in-out;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .model {
    display: none;
  }
}

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

section {
  padding: 100px 0;
}

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

.section-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.section-badge.animate-in {
  animation: badgeFadeIn 0.5s ease forwards;
}

@keyframes badgeFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.section-badge:hover {
  transform: scale(1.05);
}

.badge-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
  animation-delay: 2s;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.badge-icon {
  font-size: 16px;
}

.rotating-icon {
  display: inline-block;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.badge-text {
  color: #9ca3af;
  font-size: 14px;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(20px);
}

.section-title.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.section-description {
  font-size: 18px;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
}

.section-description.animate-in {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: linear-gradient(to bottom, #1b2735 0%, #090a0f 50%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, opacity 0.5s ease;
  will-change: transform;
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.feature-card.animate-in:hover {
  background: linear-gradient(to bottom, #232526 0%, #1a1a1a 50%, #000000 100%);
  transform: translateY(-4px) scale(1.02);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.feature-svg {
  width: 100%;
  height: 100%;
}

.svg-path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.feature-card.animate-in .svg-path {
  animation: drawPath 7s ease forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Video Section */
.video-section {
  height: 120vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  transform-origin: bottom center;
  transform: rotateX(120deg);
  will-change: transform;
}

.video-container {
  width: 100%;
  max-width: 1200px;
  opacity: 1;
  transform: none;
  position: sticky;
  bottom: 24px;
  padding: 0 24px;
}

#flippingScreen {
  transform-style: preserve-3d;
  transform-origin: bottom;
  transition: transform 0.1s ease-out;
}

.video-container.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.video-placeholder:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.demo-video {
  width: 75%;
  height: 75%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  margin: 0 auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: #000;
  display: block;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.play-button svg {
  width: 32px;
  height: 32px;
  margin-left: 2.5px;
}

.video-placeholder:hover .play-button {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.video-text {
  color: #9ca3af;
  font-size: 14px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(to bottom, #1b2735 0%, #090a0f 50%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease-out, background 0.3s ease, opacity 0.5s ease;
  will-change: transform;
}

.pricing-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.animate-in:hover {
  transform: translateY(-8px);
  background: linear-gradient(to bottom, #232526 0%, #1a1a1a 50%, #000000 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card:hover {
  background: linear-gradient(to bottom, #232526 0%, #1a1a1a 50%, #000000 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.pricing-featured {
  background: linear-gradient(to bottom, #232526 0%, #1a1a1a 50%, #000000 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  scale: 1.08;
}

.pricing-featured:hover {
  background: linear-gradient(to bottom, #1b2735 0%, #090a0f 50%, #000000 100%);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-name {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 24px;
  color: #9ca3af;
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 4px;
}

.price-period {
  font-size: 16px;
  color: #9ca3af;
}

.pricing-description {
  color: #9ca3af;
  font-size: 14px;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #d1d5db;
  font-size: 14px;
}

.feature-check {
  color: #10b981;
  font-weight: bold;
  font-size: 16px;
}

.btn-arroww {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.pricing-btn {
  width: 100%;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.pricing-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.pricing-btn-featured {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
}

.pricing-btn-featured:hover {
  background: linear-gradient(135deg, #5558e3, #7c3aed);
}

/* Scroll Animation  */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* Cursor  */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: white;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid #1f2937;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-box {
  width: 32px;
  height: 32px;
  font-size: 12px;
  margin: 0;
}

.footer-description {
  color: #6b7280;
  font-size: 14px;
}

.footer-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1f2937;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

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

  .hero-section {
    padding-top: 100px;
    min-height: auto;
  }

  .hero-heading {
    font-size: 36px;
    text-align: center;
  }

  .hero-description {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 30px;
  }

  .stat-border {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
  }

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

  .video-section {
    height: auto;
    padding: 40px 0;
    transform: none;
    rotate: 0deg;
  }

  .video-container {
    padding: 0 15px;
    width: 100%;
    min-width: unset;
  }

  .demo-video {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 28px;
  }

  .stat-number {
    font-size: 24px;
  }

  .price-amount {
    font-size: 42px;
  }
}