:root {
  /* Color Palette - Cyberpunk Neon on Dark */
  --primary-cyan: #00F0FF;
  --secondary-purple: #BC13FE;
  --bg-primary: #0B0C15;
  --bg-secondary: #121420;
  --bg-footer: #05060A;
  --button-primary: #00F0FF;
  
  /* Soft Organic Gradients */
  --gradient-primary: linear-gradient(135deg, #00F0FF 0%, #BC13FE 100%);
  --gradient-secondary: linear-gradient(45deg, #121420 0%, #0B0C15 100%);
  --gradient-button: linear-gradient(135deg, #00F0FF 0%, #0099CC 100%);
  --gradient-card: linear-gradient(145deg, rgba(17, 20, 32, 0.8) 0%, rgba(11, 12, 21, 0.9) 100%);
  
  /* Typography - Round and Friendly */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', var(--font-primary);
  
  /* Soft Shadows - Organic */
  --shadow-soft: 0 10px 30px -10px rgba(0, 240, 255, 0.15);
  --shadow-medium: 0 20px 40px -15px rgba(188, 19, 254, 0.2);
  --shadow-strong: 0 25px 50px -20px rgba(0, 240, 255, 0.25);
  --shadow-inner: inset 0 2px 4px rgba(255, 255, 255, 0.05);
  
  /* Border Radius - Generous */
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: #E8F9FF;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-cyan);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #B8F3FF;
}

p {
  font-size: 1.1rem;
  color: #A8B8C8;
  margin-bottom: var(--space-sm);
}

/* Custom Components */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Soft Organic Cards */
.card-organic {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.card-organic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-organic:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 240, 255, 0.3);
}

.card-organic:hover::before {
  opacity: 1;
}

.card-organic:hover .card-content {
  transform: translateY(-2px);
}

/* Gradient Buttons */
.btn-gradient {
  background: var(--gradient-button);
  border: none;
  border-radius: var(--radius-md);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: var(--space-sm) var(--space-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-gradient:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-cyan);
  border-radius: var(--radius-md);
  color: var(--primary-cyan);
  font-weight: 500;
  padding: calc(var(--space-sm) - 2px) var(--space-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-cyan);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover::before {
  width: 100%;
}

/* Section Backgrounds */
.section-bg-primary {
  background: var(--bg-primary);
}

.section-bg-secondary {
  background: var(--bg-secondary);
}

.section-bg-footer {
  background: var(--bg-footer);
}

/* Navigation */
.nav-organic {
  background: rgba(11, 12, 21, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-link {
  color: #A8B8C8;
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-cyan);
  background: rgba(0, 240, 255, 0.05);
}

.nav-link:hover::after {
  width: 80%;
}

/* Forms */
.form-organic {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  color: #E8F9FF;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input::placeholder {
  color: #6B7C8C;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-label {
  color: #B8F3FF;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  display: block;
}

/* Feature Cards */
.feature-card {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(188, 19, 254, 0.2);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-strong);
  border-color: rgba(188, 19, 254, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-soft);
}

/* Pricing Cards */
.pricing-card {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pricing-card.featured {
  border-color: var(--primary-cyan);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  opacity: 0;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.pricing-card:hover.featured {
  transform: translateY(-8px) scale(1.05);
}

/* Testimonials */
.testimonial-card {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--space-md);
  font-size: 4rem;
  color: var(--primary-cyan);
  font-family: serif;
  line-height: 1;
}

/* Footer */
.footer-organic {
  background: var(--bg-footer);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  position: relative;
}

.footer-organic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

/* Scroll Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Glow Effects */
.glow-cyan {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.glow-purple {
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
  }
  
  .card-organic,
  .feature-card,
  .pricing-card,
  .testimonial-card,
  .form-organic {
    padding: var(--space-lg);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .card-organic,
  .feature-card,
  .pricing-card,
  .testimonial-card,
  .form-organic {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .btn-gradient,
  .btn-secondary {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.9rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
  outline: 2px solid var(--primary-cyan);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: rgba(0, 240, 255, 0.3);
  color: #FFFFFF;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-purple);
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}