/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors - Matched to Logo */
  --primary-color: #ff8c1a;
  --secondary-color: #00b894;
  
  /* Dark Theme Colors */
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-tertiary: #1a202e;
  --bg-card: #151b2b;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  
  /* Accent Colors */
  --accent-purple: #7c3aed;
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  
  /* Border & Shadow */
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --container-max-width: 1280px;
  --container-padding: 2rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===================================
   COUPON BANNER
   =================================== */
.coupon-banner {
  background: #00b894;
  padding: 0.4rem 0;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--primary-color);
}

.coupon-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.coupon-icon {
  font-size: 1.05rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.coupon-text {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.coupon-text strong {
  color: #000;
  font-weight: 800;
}

.coupon-code-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.coupon-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
}

.coupon-code {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9rem;
  font-weight: 800;
  color: #000;
  background: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 1px;
}

.coupon-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #000;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  padding: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon-close:hover {
  opacity: 1;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 14, 26, 0.95);
  box-shadow: var(--shadow-lg);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
  gap: 1.25rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: transform var(--transition-base);
}

.logo img {
  height: 64px;
  width: auto;
  max-width: 190px;
  transform: scaleX(1.06);
  transform-origin: left center;
  transition: filter var(--transition-base), transform var(--transition-base);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo:hover img {
  filter: drop-shadow(0 0 8px rgba(255, 140, 26, 0.35));
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.25rem;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--primary-color);
  transition: transform var(--transition-base);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-icon {
  width: 18px;
  height: 18px;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-base);
}

.nav-item.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Discord (icon-only) */
.discord-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary) !important;
}

.discord-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 140, 26, 0.12);
  border-color: rgba(255, 140, 26, 0.25);
  color: var(--text-primary) !important;
}

.discord-link::after {
  display: none;
}

.discord-icon {
  width: 20px;
  height: 20px;
}

/* Client Area Button - Highlighted */
.client-area-btn {
  background: var(--primary-color);
  color: white !important;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.client-area-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.client-area-btn::after {
  display: none;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
  z-index: 100;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding-left: 1.25rem;
}

.dropdown-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: unset;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 184, 148, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 140, 26, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%230a0e1a"/><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="500" height="500" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23ff8c1a" opacity="0.3"/><circle cx="200" cy="150" r="1.5" fill="%2300b894" opacity="0.3"/><circle cx="400" cy="100" r="1" fill="%23ffffff" opacity="0.2"/><circle cx="150" cy="300" r="2" fill="%23ff8c1a" opacity="0.2"/><circle cx="350" cy="400" r="1.5" fill="%2300b894" opacity="0.3"/></svg>');
  animation: particles 20s linear infinite;
}

@keyframes particles {
  0% { transform: translateY(0); }
  100% { transform: translateY(-500px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Left - Content */
.hero-left {
  animation: fadeInLeft 0.8s ease-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 140, 26, 0.08);
  border: 1px solid rgba(255, 140, 26, 0.18);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.gradient-text {
  color: var(--primary-color);
}

.gradient-text.animated {
  animation: fadeInScale 0.8s ease-out;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 90%;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.btn-primary {
  background: var(--primary-color);
  color: #0a0e1a;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover svg {
  transform: translateX(5px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: var(--border-color);
}

/* Hero Tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1.5px solid #00b894;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #00b894;
  transition: all 0.3s ease;
}

.hero-tag svg {
  stroke: #00b894;
  flex-shrink: 0;
}

.hero-tag:hover {
  background: rgba(0, 184, 148, 0.1);
  transform: translateY(-2px);
}

/* Services Slider */
.services-slider {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
}

.services-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.services-text {
  display: flex;
  gap: 1.5rem;
  animation: slideServices 20s linear infinite;
}

.service-item {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
  position: relative;
}

.service-item:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -1.25rem;
  color: var(--primary-color);
}

@keyframes slideServices {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Hero Right - Features Card */
.hero-right {
  animation: fadeInRight 0.8s ease-out;
  display: flex;
  align-items: stretch;
  align-self: stretch;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
}

.hero-card-header {
  margin-bottom: 1.5rem;
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 140, 26, 0.12);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex: 1;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 140, 26, 0.12);
  border: 1px solid rgba(255, 140, 26, 0.18);
  border-radius: 10px;
  color: var(--primary-color);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.feature-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 140, 26, 0.12);
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-check svg {
  width: 18px;
  height: 18px;
}

/* Card Footer */
.hero-card-footer {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }
  
  .coupon-content {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 2rem;
  }
  
  .coupon-text {
    text-align: center;
    font-size: 0.85rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-card {
    padding: 1.5rem;
  }
  
  .feature-list {
    gap: 1rem;
  }
  
  .feature-item {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
  }
  
  .feature-check {
    grid-column: 2;
    justify-self: end;
  }
  
  .hero-card-footer {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========================================
   Plans Section
   ======================================== */

.plans-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0d1117 100%);
  position: relative;
}

.plans-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 140, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.plans-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.plans-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.2;
}

.plans-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.highlight-orange {
  color: var(--primary-color);
  font-weight: 700;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Most Popular Badge */
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #0a0e1a;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Plan Icons */
.plan-icon {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.plan-card:hover .plan-icon {
  transform: scale(1.05);
}

.plan-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mc-icon {
  background: linear-gradient(135deg, rgba(0, 140, 112, 0.12), rgba(0, 155, 151, 0.12));
  border: 2px solid rgba(0, 140, 112, 0.25);
}

.vps-icon {
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.15), rgba(255, 170, 68, 0.15));
  border: 2px solid rgba(255, 140, 26, 0.3);
}

.game-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.15));
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.plan-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 2.7rem;
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.plan-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Plan Features */
.plan-features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.plan-features svg {
  flex-shrink: 0;
}

.mc-card .plan-features svg {
  stroke: #00b894;
}

/* Plan Buttons */
.plan-button {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.mc-button {
  background: #00b894;
  color: white;
}

.mc-button:hover {
  background: #00a37e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 184, 148, 0.3);
}

.orange-button {
  background: var(--primary-color);
  color: #0a0e1a;
  font-weight: 700;
}

.orange-button:hover {
  background: #ffaa44;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 140, 26, 0.3);
}

/* Minecraft Card Border Accent */
.mc-card {
  border-top: 3px solid #00b894;
}

.orange-card {
  border-top: 3px solid var(--primary-color);
}

/* Payment Methods within Plans Section */
.payment-methods-container {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.payment-header {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.payment-header strong {
  color: var(--primary-color);
  font-weight: 700;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 28px;
  transition: transform 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-2px);
}

.payment-method img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-method:hover img {
  opacity: 1;
}

.payment-method.payment-text {
  width: auto;
  padding: 0 0.75rem;
}

.payment-method.payment-text span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .payment-methods {
    gap: 1.5rem;
  }

  .payment-method {
    width: 60px;
    height: 40px;
  }
}

/* ========================================
   Panel Section
   ======================================== */

.panel-section {
  padding: 5rem 2rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.panel-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

/* Panel Left */
.panel-left {
  animation: fadeInLeft 0.8s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #0a0e1a;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.panel-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.panel-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.panel-info {
  margin-bottom: 2rem;
}

/* Panel Features */
.panel-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  justify-content: center;
}

.panel-feature-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.panel-feature-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.panel-feature-btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  transition: all 0.3s ease;
}

.panel-feature-btn:hover {
  border-color: rgba(255, 140, 26, 0.5);
  background: rgba(255, 140, 26, 0.1);
  color: var(--text-primary);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(255, 140, 26, 0.2);
}

.panel-feature-btn:hover::before {
  transform: scaleY(1);
}

.panel-feature-btn:hover svg {
  stroke: var(--primary-color);
  transform: scale(1.15);
}

.panel-feature-btn.active {
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.2), rgba(255, 170, 68, 0.2));
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.panel-feature-btn.active::before {
  transform: scaleY(1);
  width: 5px;
}

.panel-feature-btn.active svg {
  stroke: var(--primary-color);
  transform: scale(1.15);
}

/* Panel Right */
.panel-right {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

.panel-screenshot-container {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  background: var(--card-bg);
}

.panel-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.panel-screenshot.active {
  display: block;
  opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
  .panel-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .panel-title {
    font-size: 2rem;
  }

  .panel-subtitle {
    font-size: 1rem;
  }
}

/* ========================================
   Free Trial Section
   ======================================== */

.trial-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0d1117 100%);
  position: relative;
  overflow: hidden;
}

.trial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 26, 0.08) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

.trial-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 140, 26, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 170, 68, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 140, 26, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 140, 26, 0.2), transparent);
  background-size: 200px 200px;
  animation: float-particles 20s linear infinite;
  opacity: 0.4;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes float-particles {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200px);
  }
}

.trial-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 140, 26, 0.1);
  border: 2px solid var(--primary-color);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.trial-badge.pulse {
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.trial-badge svg {
  stroke: var(--primary-color);
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.trial-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  animation: fadeInScale 0.8s ease-out;
}

.gradient-highlight {
  color: var(--primary-color);
  font-weight: 800;
}

@keyframes shimmer-text {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3);
  }
}

.trial-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.trial-subtitle strong {
  color: var(--primary-color);
  font-weight: 700;
}

.trial-features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trial-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #00b894;
  font-weight: 600;
  font-size: 0.95rem;
}

.trial-feature svg {
  stroke: #00b894;
  flex-shrink: 0;
}

.trial-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-color);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  margin-bottom: 2rem;
}

.trial-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #e67e22;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trial-button span,
.trial-button svg {
  position: relative;
  z-index: 1;
}

.trial-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.trial-button:hover::before {
  opacity: 1;
}

.trial-button svg {
  transition: transform 0.3s ease;
}

.trial-button:hover svg {
  transform: translateX(5px);
}

@keyframes float-button {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trial-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #00b894;
  font-weight: 600;
  animation: fadeInUp 0.8s ease-out 0.8s both, blink-attention 2s ease-in-out infinite;
}

.trial-note svg {
  stroke: #00b894;
  flex-shrink: 0;
}

@keyframes blink-attention {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .trial-section {
    padding: 4rem 1.5rem;
  }

  .trial-title {
    font-size: 2rem;
  }

  .trial-subtitle {
    font-size: 1rem;
  }

  .trial-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .trial-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .plans-section {
    padding: 4rem 1.5rem;
  }

  .plans-header h2 {
    font-size: 1.75rem;
  }

  .plans-subtitle {
    font-size: 1rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .plan-card {
    padding: 2rem 1.5rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0d1117 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 140, 26, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.6s ease-out;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.faq-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.05) 0%, rgba(107, 45, 158, 0.05) 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 140, 26, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
  position: relative;
  backdrop-filter: blur(10px);
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item:hover {
  border-color: rgba(255, 140, 26, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 26, 0.1);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.08) 0%, rgba(107, 45, 158, 0.08) 100%);
  box-shadow: 0 8px 30px rgba(255, 140, 26, 0.15);
}

.faq-item.active::before {
  opacity: 1;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  padding-left: 1.75rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(255, 140, 26, 0.3));
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem 0 1.75rem;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.75rem;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 140, 26, 0.1);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-header {
    margin-bottom: 2.5rem;
  }

  .faq-question {
    padding: 1.2rem;
    padding-left: 1.5rem;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem 1.5rem;
  }

  .faq-answer {
    padding: 0 1.2rem 0 1.5rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}
/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 140, 26, 0.1);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 140, 26, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 6rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
  transform: scaleX(1.06);
  max-width: 190px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 140, 26, 0.1);
  border-bottom: 1px solid rgba(255, 140, 26, 0.1);
}

.footer-gst,
.footer-location {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  margin: 0;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 140, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 140, 26, 0.15);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.35);
  border-color: transparent;
}

.footer-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding-top: 2rem;
}

.footer-column h4 {
  color: #ff8c1a;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 0;
}

.footer-column ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--primary);
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.footer-column ul li a:hover::before {
  width: 100%;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 140, 26, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer-right {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    gap: 3rem;
  }

  .footer-right {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-logo {
    max-width: 170px;
  }

  .footer-logo img {
    max-width: 170px;
  }
}