/* Modern Dark Theme with Dark Blue and Purple Accents */
:root {
  /* Color Palette */
  --primary: #0f172a; /* Dark navy blue background */
  --primary-dark: #020617; /* Darker navy for contrast */
  --secondary: #1e1b4b; /* Dark purple secondary */
  --accent: #3e40a1; /* Purple accent */
  --accent-bright: #5c4c8b; /* Brighter purple */
  --accent-dim: #6366f1; /* Dimmer purple */
  --text-primary: #f8fafc; /* Primary text */
  --text-secondary: #cbd5e1; /* Secondary text */
  --text-muted: #64748b; /* Muted text */
  --border: #1e293b; /* Border color */
  --surface: #1e293b; /* Surface/card backgrounds */

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-accent: 0 0 20px rgba(62, 64, 161, 0.4);
}

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

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

.font-inter {
  font-family: var(--font-family);
}

/* Utility Classes */
.bg-primary {
  background-color: var(--primary);
}
.bg-primary-dark {
  background-color: var(--primary-dark);
}
.bg-secondary {
  background-color: var(--secondary);
}

/* Section Background Variations */
.bg-testimonials {
  background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(30, 27, 75, 0.8) 100%);
  position: relative;
}

.bg-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(62, 64, 161, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.bg-testimonials > .container {
  position: relative;
  z-index: 2;
}

.bg-pricing {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(15, 23, 42, 0.95) 100%);
  position: relative;
}

.bg-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(62, 64, 161, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.bg-pricing > .container {
  position: relative;
  z-index: 2;
}
.text-accent {
  color: var(--accent);
}
.text-accent-bright {
  color: var(--accent-bright);
}
.border-accent-dim {
  border-color: var(--accent-dim);
}

/* Logo Styles */
.logo-image {
  filter: drop-shadow(0 0 10px rgba(62, 64, 161, 0.4));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo-image:hover {
  filter: drop-shadow(0 0 20px rgba(92, 76, 139, 0.8));
  transform: scale(1.1) rotate(-5deg);
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(62, 64, 161, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(92, 76, 139, 0.6));
  }
}
/* Navigation Styles */
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transition: width 0.3s ease;
}

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

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: white;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s ease-in-out infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-xl), var(--shadow-accent);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  animation: none;
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: var(--shadow-lg), 0 0 0 0 rgba(62, 64, 161, 0.4);
  }
  50% {
    box-shadow: var(--shadow-xl), 0 0 20px 5px rgba(62, 64, 161, 0.2);
  }
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-bright);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 50%,
    var(--secondary) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(62, 64, 161, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(99, 102, 241, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: backgroundPulse 4s ease-in-out infinite alternate;
}

.hero-section h1 {
  animation: titleSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  text-shadow: 0 0 30px rgba(62, 64, 161, 0.5);
}

.hero-section p {
  animation: subtitleFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  opacity: 0;
}

.hero-section .btn-primary,
.hero-section .btn-secondary {
  animation: buttonSlideUp 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes backgroundPulse {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: var(--spacing-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(62, 64, 161, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  width: 300px;
  height: 300px;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 20px 40px rgba(62, 64, 161, 0.2);
  border-color: var(--accent-dim);
}

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

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15);
  box-shadow: var(--shadow-accent), 0 10px 30px rgba(62, 64, 161, 0.4);
  animation: iconHoverFloat 2s ease-in-out infinite;
}

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

@keyframes iconHoverFloat {
  0% {
    transform: scale(1.15) rotate(0deg) translateY(0px);
  }
  25% {
    transform: scale(1.18) rotate(5deg) translateY(-3px);
  }
  50% {
    transform: scale(1.2) rotate(0deg) translateY(-6px);
  }
  75% {
    transform: scale(1.18) rotate(-5deg) translateY(-3px);
  }
  100% {
    transform: scale(1.15) rotate(0deg) translateY(0px);
  }
}

.feature-icon .material-icons {
  font-size: 2rem;
  color: white;
}

/* Business Type Cards */
.business-type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.business-type-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dim);
  box-shadow: var(--shadow-lg);
}

/* Benefit Cards */
.benefit-card {
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
}

.benefit-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15);
  box-shadow: var(--shadow-accent);
}

.benefit-icon .material-icons {
  font-size: 2.5rem;
  color: white;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: var(--spacing-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent);
  font-family: serif;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 15px 30px rgba(62, 64, 161, 0.2);
  border-color: var(--accent-dim);
}

.testimonial-card:hover::before {
  color: var(--accent-bright);
  transform: scale(1.1);
}

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

/* Contact Form */
.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: var(--spacing-xl);
}

.contact-form-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: var(--spacing-xl);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--primary);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(62, 64, 161, 0.15);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Pricing Section */
.features-included {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.included-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem;
  background: rgba(var(--accent-rgb, 62, 64, 161), 0.05);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.included-feature:hover {
  background: rgba(var(--accent-rgb, 62, 64, 161), 0.1);
  transform: translateY(-2px);
}

.included-feature .material-icons {
  color: var(--accent);
  font-size: 1.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 15px 30px rgba(62, 64, 161, 0.2);
  border-color: var(--accent-dim);
}

.pricing-card-featured {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(62, 64, 161, 0.05), rgba(99, 102, 241, 0.05));
}

.pricing-card-featured:hover {
  border-color: var(--accent-bright);
  box-shadow: var(--shadow-xl), 0 15px 30px rgba(62, 64, 161, 0.3);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: white;
  padding: 0.75rem 1.5rem 1.25rem 1.5rem;
  border-radius: 0 0 0.75rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive adjustments for featured badge */
@media (max-width: 768px) {
  .featured-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem 1rem 1rem;
    letter-spacing: 0.25px;
    max-width: calc(100% - 1rem);
  }
}

@media (max-width: 480px) {
  .featured-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem 0.8rem 0.75rem;
    max-width: calc(100% - 0.5rem);
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  flex-grow: 1;
}

.pricing-card-featured .pricing-header {
  padding-top: 1.5rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.price-period {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-left: 0.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.pricing-feature .material-icons {
  color: var(--accent);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.pricing-btn {
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
}

/* Responsive pricing adjustments */
@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
}

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

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

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

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(62, 64, 161, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(92, 76, 139, 0.7);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: var(--spacing-xl) 0;
  }

  .feature-card,
  .benefit-card,
  .testimonial-card {
    margin-bottom: var(--spacing-lg);
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    margin-bottom: var(--spacing-md);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
}

/* Selection styles */
::selection {
  background: var(--accent);
  color: white;
}

/* Additional enhanced animations */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes sectionSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Down Arrow */
.scroll-down-arrow {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-cta-text {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 1;
  transition: all 0.3s ease;
  background: rgba(var(--primary-dark-rgb, 2, 6, 23), 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(var(--accent-rgb, 62, 64, 161), 0.3);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-down-arrow .material-icons {
  font-size: 2.5rem;
  color: var(--accent);
  background: rgba(var(--primary-dark-rgb, 2, 6, 23), 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 0.75rem;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 15px rgba(62, 64, 161, 0.3);
  transition: all 0.3s ease;
}

.scroll-down-arrow:hover {
  transform: translateX(-50%) scale(1.1);
  animation: none;
}

.scroll-down-arrow:hover .scroll-cta-text {
  color: var(--accent-bright);
  opacity: 1;
  background: rgba(var(--primary-dark-rgb, 2, 6, 23), 0.95);
  border-color: rgba(var(--accent-bright-rgb, 92, 76, 139), 0.4);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-down-arrow:hover .material-icons {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
  box-shadow: 0 6px 20px rgba(92, 76, 139, 0.4);
  background: rgba(var(--primary-dark-rgb, 2, 6, 23), 0.9);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Enhanced floating particles */
.floating-particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.floating-particle.shape-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 5%;
  background: var(--accent);
  opacity: 0.9;
  animation: moveShape1 15s infinite linear;
}

.floating-particle.shape-2 {
  width: 450px;
  height: 450px;
  bottom: 15%;
  right: 10%;
  background: var(--accent-bright);
  opacity: 0.8;
  animation: moveShape2 18s infinite linear;
}

.floating-particle.shape-3 {
  width: 350px;
  height: 350px;
  top: 60%;
  left: 60%;
  background: var(--accent-dim);
  opacity: 0.7;
  animation: moveShape3 20s infinite linear;
}

@keyframes moveShape1 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(60%, 40%) rotate(120deg) scale(1.2);
  }
  50% {
    transform: translate(20%, 80%) rotate(240deg) scale(0.8);
  }
  75% {
    transform: translate(-40%, 25%) rotate(360deg) scale(1.1);
  }
  100% {
    transform: translate(0, 0) rotate(480deg) scale(1);
  }
}

@keyframes moveShape2 {
  0% {
    transform: translate(0, 0) rotate(360deg) scale(1);
  }
  25% {
    transform: translate(-50%, -25%) rotate(270deg) scale(1.1);
  }
  50% {
    transform: translate(-20%, -60%) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translate(35%, -20%) rotate(90deg) scale(1.2);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@keyframes moveShape3 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(-25%, 25%) scale(1.3) rotate(180deg);
  }
  66% {
    transform: translate(25%, -25%) scale(0.7) rotate(360deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(540deg);
  }
}


