:root {
  --primary-green: #00ff88;
  --secondary-green: #88ff00;
  --primary-gold: #ffd700;
  --secondary-gold: #ffed4e;
  --accent-pink: #ffc0cb;
  --dark-bg: #041B13;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--dark-bg);
  color: white;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glass Effects */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.glass-card {
  background: rgba(0, 255, 136, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 136, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 255, 136, 0.1);
  border-radius: 16px;
  padding: 24px;
}

/* Text Gradients */
.text-gradient-green {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.gradient-green {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.gradient-gold {
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

/* Navigation */
.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(4, 27, 19, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
  padding: 16px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: var(--dark-bg);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--dark-bg);
}

.full-width {
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  margin-bottom: 8px;
}

.stat p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Section */
.features {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark-bg);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Products Preview */
.products-preview {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.02) 50%, transparent 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.product-card {
  padding: 40px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.product-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(0, 255, 136, 0.2);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--primary-green);
}

.product-badge.gradient-gold {
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--primary-gold);
}

.product-card h3 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary-green);
}

.product-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.product-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.product-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
}

.product-pricing {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-option.highlight {
  border: 1px solid rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.05);
}

.price-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.price-value {
  font-size: 20px;
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
}

.cta-content {
  text-align: center;
  padding: 80px 60px;
  border-radius: 24px;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Footer */
.footer-glass {
  background: rgba(4, 27, 19, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 32px;
}

.footer-section h4 {
  color: var(--primary-green);
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-green);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hover-glass {
  transition: all 0.3s ease;
}

.hover-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.6);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: rgba(4, 27, 19, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px 24px;
    gap: 24px;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    padding: 60px 30px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* Products Page Styles */
.page-header {
  padding: 140px 0 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary-green);
}

.page-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.product-detail {
  padding: 60px 0;
}

.product-detail-card {
  padding: 60px;
  border-radius: 24px;
  margin-bottom: 40px;
}

.product-detail-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.product-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.product-title-section h2 {
  font-size: 48px;
  margin: 16px 0;
}

.product-tagline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.product-pricing-box {
  min-width: 320px;
  padding: 32px;
  border-radius: 16px;
}

.pricing-header h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--primary-green);
}

.pricing-options {
  margin-bottom: 24px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row.highlight {
  border: 1px solid rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.05);
}

.pricing-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-amount {
  font-size: 24px;
  font-weight: 700;
}

.product-description-section {
  margin-bottom: 60px;
}

.product-description-section h3 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.product-description-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.product-highlights {
  margin-bottom: 60px;
}

.product-highlights h3 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 32px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(8px);
}

.highlight-item svg {
  flex-shrink: 0;
  color: var(--primary-green);
  margin-top: 4px;
}

.highlight-item h4 {
  font-size: 16px;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.highlight-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.product-benefits h3 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background: rgba(0, 255, 136, 0.03);
  border-left: 3px solid var(--primary-green);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 18px;
}

.quick-compare-cta {
  padding: 80px 0;
}

/* Comparison Page Styles */
.comparison-container {
  padding: 140px 0 80px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 60px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.comparison-table thead th {
  background: rgba(0, 255, 136, 0.1);
  padding: 20px;
  text-align: left;
  font-size: 24px;
  color: var(--primary-green);
  border-radius: 12px 12px 0 0;
}

.comparison-table tbody tr {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.comparison-table tbody td {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  width: 30%;
}

.comparison-table .pro-col {
  background: rgba(0, 255, 136, 0.02);
}

.comparison-table .elite-col {
  background: rgba(255, 215, 0, 0.02);
}

.feature-check {
  color: var(--primary-green);
  font-size: 24px;
}

.feature-value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Comparison Page Additional Styles */
.pricing-comparison {
  margin-top: 80px;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.pricing-comparison-card {
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.pricing-comparison-card.featured-pricing {
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.best-value-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  color: var(--dark-bg);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-comparison-card h3 {
  font-size: 32px;
  margin-bottom: 32px;
}

.pricing-detail {
  margin-bottom: 32px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-item.highlight {
  border: 1px solid rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.05);
}

.price-note {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.decision-guide {
  margin-top: 80px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.decision-card {
  padding: 40px;
}

.decision-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.decision-list {
  list-style: none;
  padding-left: 0;
}

.decision-list li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  line-height: 1.6;
}

.decision-list li::before {
  content: "→";
  position: absolute;
  left: 12px;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 18px;
}

.why-buy-fast {
  margin-top: 80px;
  padding: 60px;
  border-radius: 24px;
}

.why-buy-fast h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 48px;
}

.buy-fast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.buy-fast-item {
  display: flex;
  align-items: start;
  gap: 20px;
}

.buy-fast-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-bg);
  flex-shrink: 0;
}

.buy-fast-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-top: 4px;
}

@media (max-width: 968px) {
  .product-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-pricing-box {
    min-width: 100%;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 36px;
  }

  .product-detail-card {
    padding: 32px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table thead th {
    font-size: 18px;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }

  .decision-grid {
    grid-template-columns: 1fr;
  }

  .why-buy-fast {
    padding: 40px 24px;
  }

  .buy-fast-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .stat h3 {
    font-size: 36px;
  }

  .feature-card {
    padding: 24px;
  }

  .product-card {
    padding: 24px;
  }

  .product-detail-card {
    padding: 24px;
  }

  .page-title {
    font-size: 28px;
  }

  .product-title-section h2 {
    font-size: 32px;
  }

  .pricing-comparison-card {
    padding: 24px;
  }

  .decision-card {
    padding: 24px;
  }

  .why-buy-fast h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .stat h3 {
    font-size: 36px;
  }

  .feature-card {
    padding: 24px;
  }

  .product-card {
    padding: 24px;
  }

  .product-detail-card {
    padding: 24px;
  }

  .page-title {
    font-size: 28px;
  }

  .product-title-section h2 {
    font-size: 32px;
  }
}