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

:root {
  --bg-primary: #050505;
  --bg-secondary: #0a0a0f;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text-main: #ffffff;
  --text-muted: #8a8a9e;
  --neon-cyan: #00e5ff;
  --neon-purple: #b100ff;
  --neon-green: #00ff41;
  --glow-cyan: 0 0 10px rgba(0, 229, 255, 0.4), 0 0 20px rgba(0, 229, 255, 0.2);
  --glow-purple: 0 0 10px rgba(177, 0, 255, 0.4), 0 0 20px rgba(177, 0, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(0, 229, 255, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(177, 0, 255, 0.05), transparent 25%),
    url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(0, 229, 255, 0.03)' stroke-width='2'%3E%3Ccircle cx='80' cy='80' r='40' stroke-dasharray='150 50' transform='rotate(45 80 80)'/%3E%3Crect x='280' y='250' width='15' height='50' rx='4' transform='rotate(-20 280 250)'/%3E%3Crect x='310' y='210' width='15' height='90' rx='4' transform='rotate(-20 310 210)'/%3E%3Crect x='340' y='160' width='15' height='140' rx='4' transform='rotate(-20 340 160)'/%3E%3Cpath d='M50 350 Q 120 250 200 300 T 380 200' stroke='rgba(177, 0, 255, 0.03)' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: center, center, top left;
  overflow-x: hidden;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 60px;
  overflow: hidden;
}

.logo-container img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #00b4d8 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--neon-purple);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(177, 0, 255, 0.1);
  box-shadow: var(--glow-purple);
}

.hero-slider {
  position: relative;
  text-align: left;
  padding: 10rem 5% 8rem;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #000;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%), url('assets/hero-bg.png');
  background-size: auto 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  margin-top: 0;
}

.hero-slider-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  margin-left: 5%;
}

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

.anim-slide-in {
  opacity: 0;
  animation: slideInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.anim-delay-1 { animation-delay: 0.2s; }
.anim-delay-2 { animation-delay: 0.5s; }
.anim-delay-3 { animation-delay: 0.8s; }

.tagline {
  color: var(--neon-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero-slider h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.hero-subtext {
  text-align: center;
  padding: 4rem 5% 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-subtext p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  margin-top: 3rem;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  max-width: 100%;
  transform: perspective(1200px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
  background-image: url('assets/space-bg.png');
  background-size: cover;
  background-position: center;
  padding: 40px;
}

.hero-image-wrapper:hover {
  transform: perspective(1200px) rotateY(-10deg) rotateX(2deg);
}

/* Lang Selector Styling */
.lang-select {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.lang-select:hover, .lang-select:focus {
  border-color: var(--neon-cyan);
}

.lang-select option {
  background-color: var(--bg-card);
  color: var(--text-main);
}

/* Magic Text Animation */
.magic-anim {
  display: inline-block;
  position: relative;
  animation: magic-glow 4s infinite alternate ease-in-out;
}

@keyframes magic-glow {
  0% {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
  }
  50% {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple), 0 0 30px var(--neon-purple);
  }
  100% {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
  }
}

/* Magic Cursor Glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(255, 0, 60, 0.05) 40%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.wp-floating-badge {
  position: absolute;
  top: 15%;
  right: 20px;
  width: 140px;
  height: 140px;
  background: rgba(0, 229, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-main);
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
  animation: float 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 10;
  transform: translateZ(50px);
}

@keyframes float {
  0% { transform: translateY(0) rotate(-4deg) translateZ(50px); }
  50% { transform: translateY(-35px) rotate(6deg) translateZ(80px); }
  100% { transform: translateY(0) rotate(-4deg) translateZ(50px); }
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.glass-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.glass-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing-section {
  padding: 5rem 5%;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 300px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.1);
}

.badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--neon-purple);
  color: #fff;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: var(--glow-purple);
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 1.5rem 0;
  color: #fff;
}

.price span {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
}

.spots-left {
  color: var(--neon-cyan);
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.features-list li {
  margin-bottom: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.features-list li::before {
  content: "✓";
  color: var(--neon-green);
  font-weight: bold;
  margin-right: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .hero-slider {
    padding: 8rem 5% 4rem;
    min-height: 60vh;
  }
  .hero-slider h1 { font-size: 2.5rem; }
  .hero-subtext { padding: 3rem 5%; }
  
  .pricing-grid { flex-direction: column; }
  .features { grid-template-columns: 1fr; }
  
  .wp-floating-badge {
    position: relative;
    top: 0;
    right: 0;
    margin: 2rem auto 0;
    animation: float-mobile 4s ease-in-out infinite;
    max-width: 90%;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}

@keyframes float-mobile {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  background: rgba(0, 229, 255, 0.03);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15), inset 0 0 10px rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.4), inset 0 0 15px rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.8);
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}
.testimonial-card p::before {
  content: '"';
  font-size: 4rem;
  color: var(--neon-cyan);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  opacity: 0.3;
  font-family: serif;
}
.testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  padding: 1rem 0;
  animation: scroll-marquee 70s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 350px;
  white-space: normal;
  flex-shrink: 0;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

@keyframes pulse-btn {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 229, 255, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 229, 255, 0.8), 0 0 30px rgba(0, 229, 255, 0.6); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 229, 255, 0.4); }
}

.btn-pulse {
  animation: pulse-btn 2s infinite;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  header nav {
    width: 100%;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .logo-container {
    height: auto;
  }
  .logo-container {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .logo-container img {
    width: 280px;
    max-width: 100%;
  }
  header .btn-primary {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    text-align: center;
  }
}
