/* Base Styles */
:root {
  --primary-color: #ff5252;
  --primary-dark: #e53935;
  --primary-light: #ff8a80;
  --secondary-color: #6c63ff;
  --secondary-dark: #5a52d9;
  --secondary-light: #8a84ff;
  --accent-color: #4ecdc4;
  --dark-color: #2d3748;
  --light-color: #f8f9fa;
  --gray-color: #718096;
  --light-gray: #e2e8f0;
  --success-color: #48bb78;
  --warning-color: #f6ad55;
  --danger-color: #f56565;
  --gradient-1: linear-gradient(135deg, #ff5252, #ff8a80);
  --gradient-2: linear-gradient(135deg, #6c63ff, #8a84ff);
  --gradient-3: linear-gradient(135deg, #4ecdc4, #7ee8e1);
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 8px;
  --glow: 0 0 10px rgba(108, 99, 255, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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

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

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Canvas Background */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
  text-align: center;
}

.logo-container {
  margin-bottom: 30px;
}

.logo-img {
  width: 250px;
  height: auto;
  animation: pulse 2s infinite;
}

.progress-bar {
  width: 300px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto 15px;
  overflow: hidden;
}

.progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.loading-text {
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255, 82, 82, 0.5);
  transform: translateY(-3px);
  color: white;
}

.btn-secondary {
  background: var(--gradient-2);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-secondary:hover {
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(45, 55, 72, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: var(--transition);
}

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

.logo img {
  height: 50px;
  width: 180px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu li a {
  color: white;
  font-weight: 500;
  position: relative;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 2px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 180px 0 30px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.headline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientText 5s ease infinite;
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.subheadline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgb(0, 0, 0);
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: 500px;
}

#hero-3d-container {
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  opacity: 0.7;
  transition: var(--transition);
  z-index: 2;
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.wheel {
  width: 6px;
  height: 10px;
  background-color: white;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

.arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  animation: arrow 1.5s infinite;
  opacity: 0;
}

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

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes arrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

/* Glitch Text Effect */
.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-color);
}

.glitch-text::before {
  left: 2px;
  text-shadow: -1px 0 var(--primary-color);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: -1px 0 var(--secondary-color);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip: rect(2px, 9999px, 6px, 0);
  }
  10% {
    clip: rect(42px, 9999px, 78px, 0);
  }
  20% {
    clip: rect(22px, 9999px, 13px, 0);
  }
  30% {
    clip: rect(56px, 9999px, 97px, 0);
  }
  40% {
    clip: rect(9px, 9999px, 25px, 0);
  }
  50% {
    clip: rect(89px, 9999px, 56px, 0);
  }
  60% {
    clip: rect(28px, 9999px, 35px, 0);
  }
  70% {
    clip: rect(67px, 9999px, 12px, 0);
  }
  80% {
    clip: rect(75px, 9999px, 94px, 0);
  }
  90% {
    clip: rect(54px, 9999px, 5px, 0);
  }
  100% {
    clip: rect(91px, 9999px, 84px, 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip: rect(96px, 9999px, 72px, 0);
  }
  10% {
    clip: rect(78px, 9999px, 23px, 0);
  }
  20% {
    clip: rect(46px, 9999px, 16px, 0);
  }
  30% {
    clip: rect(82px, 9999px, 31px, 0);
  }
  40% {
    clip: rect(32px, 9999px, 62px, 0);
  }
  50% {
    clip: rect(27px, 9999px, 73px, 0);
  }
  60% {
    clip: rect(81px, 9999px, 3px, 0);
  }
  70% {
    clip: rect(50px, 9999px, 56px, 0);
  }
  80% {
    clip: rect(93px, 9999px, 25px, 0);
  }
  90% {
    clip: rect(4px, 9999px, 39px, 0);
  }
  100% {
    clip: rect(18px, 9999px, 92px, 0);
  }
}

/* Intro Section */
.intro {
  padding: 100px 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  padding-top: 40px;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.stat-visual {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 20px;
}

.stat-canvas {
  width: 100%;
  height: 100%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--gray-color);
}

/* Features Overview */
.features-overview {
  padding: 100px 0;
  background-color: rgba(45, 55, 72, 0.97);
  position: relative;
  color: white;
}

.features-overview .section-header h2 {
  color: white;
}

.features-overview .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.feature-icon i {
  font-size: 30px;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: white;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.feature-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

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

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

/* Interactive Demo Section */
.interactive-demo {
  padding: 70px 0 100px 0;;
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.demo-visual {
  height: auto;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

#demo-3d-container {
  width: 100%;
  height: 100%;
}

.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-control {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.demo-control:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.demo-control.active {
  border-left-color: var(--primary-color);
  background: linear-gradient(90deg, rgba(255, 82, 82, 0.05), transparent);
}

.control-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.control-icon i {
  font-size: 24px;
  color: white;
}

.demo-control h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
}

/* How It Works */
.how-it-works {
  padding: 90px 0;
  background-color: rgba(45, 55, 72, 0.97);
  position: relative;
  color: white;
}

.how-it-works .section-header h2 {
  color: white;
}

.how-it-works .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  margin-bottom: 17px;
  position: relative;
  align-items: center;
}

.step:last-child {
  margin-bottom: 0;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  z-index: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 15px rgba(255, 82, 82, 0.5);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
}

.step-visual {
  width: 150px;
  height: 150px;
  position: relative;
}

.step-canvas {
  width: 90%;
  height: 90%;
  border-radius: var(--border-radius);
}

/* Testimonials */
.testimonials {
  padding: 70px 0;
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-content::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(108, 99, 255, 0.1);
  font-family: serif;
  z-index: -1;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.2rem;
  margin-right: 3px;
}

.testimonial-content > p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: white;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.testimonial-dots {
  display: flex;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.2);
}

/* Call to Action */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

#cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
  position: relative;
}

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

.footer-about {
  max-width: 300px;
}

.footer-logo {
  height: 90px;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  transform: translateY(-3px) rotate(10deg);
  box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-color);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container,
  .demo-container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin-top: 50px;
    height: 400px;
  }

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

  .headline {
    font-size: 2.8rem;
  }

  .step {
    grid-template-columns: auto 1fr;
  }

  .step-visual {
    display: none;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .headline {
    font-size: 2.2rem;
  }

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

  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

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

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

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

  .footer-bottom-links a {
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 120px 0 0px;
  }

  .headline {
    font-size: 1.8rem;
  }

  .subheadline {
    font-size: 1rem;
  }

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

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

  .demo-control {
    padding: 15px;
  }

  .control-icon {
    width: 40px;
    height: 40px;
  }

  .control-icon i {
    font-size: 18px;
  }

  .demo-control h3 {
    font-size: 1rem;
  }
}

