@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(24, 34, 56, 0.85);
  --accent-green: #10B981;
  --accent-cyan: #06B6D4;
  --accent-purple: #8B5CF6;
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --border-color: rgba(255, 255, 255, 0.06);
  --glow-green: 0 0 30px rgba(16, 185, 129, 0.3);
  --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.3);
  --gradient-main: linear-gradient(135deg, #10B981, #06B6D4);
  --gradient-purple: linear-gradient(135deg, #8B5CF6, #06B6D4);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--accent-green);
  border-radius: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 14, 23, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 14, 23, 0.95);
  padding: 0.7rem 2rem;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-cta {
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: var(--gradient-main);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 2rem 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.png') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 23, 0.7) 0%, rgba(10, 14, 23, 0.85) 50%, var(--bg-primary) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: var(--gradient-main);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-green);
}

.btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.05);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 2rem;
}

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

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

.section-header .tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(16, 185, 129, 0.2);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== FREE PLUGINS ===== */
.plugins-section {
  background: var(--bg-secondary);
}

.plugins-layout {
  display: flex;
  gap: 70px;
  align-items: stretch;
  max-width: 1550px;
  margin: 0 auto;
}

.plugins-sidebar {
  flex: 0 0 380px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.8));
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.plugins-sidebar h3 {
  margin-bottom: 35px;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plugins-sidebar h3::before {
  content: '⚡';
  font-size: 1.5rem;
  -webkit-text-fill-color: initial;
}

.plugins-sidebar ol {
  padding-left: 0;
  list-style: none;
  counter-reset: integration-counter;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
  position: sticky;
  top: 120px;
}

.plugins-sidebar li {
  counter-increment: integration-counter;
  position: relative;
  padding-left: 60px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plugins-sidebar li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -20px;
  width: 2px;
  background: rgba(16, 185, 129, 0.15);
}

.plugins-sidebar li::before {
  content: counter(integration-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  background: var(--bg-primary);
  color: var(--accent-green);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-green);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
  z-index: 2;
}

.plugins-sidebar li:nth-child(1)::before {
  background: var(--gradient-main);
  color: white;
  border: none;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.plugins-sidebar li strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.plugins-sidebar code {
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--accent-cyan);
  font-size: 0.9em;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.plugins-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

@media (max-width: 1000px) {
  .plugins-layout {
    flex-direction: column;
  }

  .plugins-sidebar {
    width: 100%;
    flex: none;
  }

  .plugins-sidebar ol {
    position: relative;
    top: 0;
  }
}

.plugin-row {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.plugin-row:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background: var(--bg-card-hover);
}

.plugin-row-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 12px;
  min-height: 48px;
}

.plugin-row-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.plugin-row-name {
  font-weight: 600;
  font-size: 0.95rem;
  flex-grow: 1;
}

.plugin-row-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pr-btn {
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.25s;
  white-space: nowrap;
}

.pr-dl {
  background: var(--gradient-main);
  color: #fff;
}

.pr-dl:hover {
  box-shadow: var(--glow-green);
  transform: translateY(-1px);
}

.pr-yt {
  background: rgba(255, 0, 0, 0.12);
  color: #FF4444;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.pr-yt:hover {
  background: rgba(255, 0, 0, 0.22);
  transform: translateY(-1px);
}

.plugin-row-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
  padding: 0 20px;
}

.plugin-row.is-expanded .plugin-row-expand {
  max-height: 500px;
  opacity: 1;
  padding: 0 20px 20px;
}

/* Detail Layout (Bild links, Text rechts) */
.plugin-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 10px;
}

.plugin-gallery {
  position: relative;
  flex-shrink: 0;
  width: 260px;
}

.pg-item {
  position: relative;
  width: 100%;
  height: 145px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: zoom-in;
  background: var(--bg-primary);
  display: none;
  /* Only show first image */
}

.pg-item:first-child {
  display: block;
}

.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s;
}

.pg-item:first-child:hover img {
  transform: scale(1.05);
}

/* Gallery + More logic for cover image */
.plugin-gallery[data-more]::after {
  content: '+' attr(data-more);
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.plugin-detail-info {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.plugin-detail-info li {
  margin-bottom: 6px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lb-content {
  position: relative;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lb-counter {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.lb-nav {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.lb-close {
  position: absolute;
  top: 25px;
  right: 35px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lb-close:hover {
  color: white;
}

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-green), var(--accent-cyan), var(--accent-purple));
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-green);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-green);
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), var(--bg-card));
}

.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -1px;
  right: 24px;
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--gradient-main);
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 1rem 0;
}

.pricing-card .price span.suffix {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #EF4444;
}

.pricing-warning>span>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  font-weight: 800;
  font-size: 0.75rem;
}

.plugin-link {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.plugin-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: rgba(16, 185, 129, 0.3);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  color: var(--text-primary);
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--accent-green);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding-bottom: 1.25rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem;
  text-align: center;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-green);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== PARTICLES ===== */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-green);
  opacity: 0;
  animation: float-particle 8s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

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

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 23, 0.98);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat .number {
    font-size: 1.5rem;
  }

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

  .plugins-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

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

  .process-steps::before {
    left: 22px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 0.9rem;
  }

  .process-step {
    gap: 1rem;
  }

  /* Free Plugins Mobile Fixes */
  .plugin-row-header {
    flex-wrap: wrap;
  }
  .plugin-row-name {
    flex-grow: 1;
  }
  .plugin-row-actions {
    width: 100%;
    justify-content: flex-start;
    margin-top: 8px;
    margin-left: 36px;
  }
  .plugin-detail {
    flex-direction: column;
    gap: 15px;
  }
  .plugin-gallery {
    width: 100%;
    max-width: 100%;
  }
  .pg-item {
    height: auto;
    aspect-ratio: 16/9;
  }
  .plugin-row.is-expanded .plugin-row-expand {
    max-height: none;
    padding-bottom: 20px;
  }
}

/* ===== LANG SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 1rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s;
  padding: 0;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--accent-green);
}

.lang-sep {
  color: var(--border-color);
  font-size: 0.9rem;
}

.mobile-only-lang {
  display: none;
}

@media (max-width: 768px) {
  .desktop-lang {
    display: none;
  }

  .mobile-only-lang {
    display: block;
    margin-top: 1rem;
  }

  .lang-switcher {
    margin-left: 0;
  }
}

/* ===== LEGAL MODALS ===== */
.legal-modal {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.8); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.legal-modal.active { opacity: 1; pointer-events: auto; }
.legal-content {
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 2.5rem; max-width: 800px; width: 90%;
  max-height: 85vh; overflow-y: auto;
  position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.legal-close {
  position: absolute; top: 15px; right: 20px;
  background: none; border: none; color: var(--text-muted); font-size: 2rem;
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.legal-close:hover { color: var(--text-primary); }
.legal-content h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent-green); }
.legal-content p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.6; }