:root {
  /* Colors - Premium Tech */
  --primary: #00ff41;
  --primary-dim: rgba(0, 255, 65, 0.1);
  --primary-glow: #00ff41;
  --secondary: #030303;
  /* Deep Void */
  --text-main: #ffffff;
  --text-muted: #a0a0a0;

  /* Glassmorphism */
  --glass-bg: rgba(10, 10, 10, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--secondary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* Matrix Background */
#matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 27px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  border: 1px solid var(--primary);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.btn-primary:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

/* Header */
header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 3, 3, 0.8);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 32px;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

nav.mobile-active {
  display: block;
}

nav.mobile-active ul {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(3, 3, 3, 0.98);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  flex-direction: column;
  padding: 40px 24px;
  gap: 0;
  z-index: 99;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

nav.mobile-active ul li {
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
}

nav.mobile-active ul li:last-child {
  border-bottom: none;
}

nav.mobile-active a {
  font-size: 1.1rem;
  padding: 8px 0;
  display: block;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  text-align: center;
  position: relative;
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-secondary {
  border-color: #fff !important;
  color: #fff !important;
}

.btn-hero-secondary:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Glass Cards */
.benefit-card,
.pricing-card,
.faq-item,
.addons-table {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s ease;
}

/* Grid System */
.grid {
  display: grid;
  gap: 40px;
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
}

/* Card Hover Effects */
.benefit-card:hover,
.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 255, 65, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

/* Pricing Specifics */
.pricing-card {
  position: relative;
}

.pricing-card.popular {
  background: rgba(0, 255, 65, 0.03);
  border-color: rgba(0, 255, 65, 0.3);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 65, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
  z-index: 10;
}

.price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 24px 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

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

.features-list {
  list-style: none;
  margin: 30px 0;
}

.features-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.features-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  text-shadow: 0 0 10px var(--primary);
}

/* Add-ons Table */
.addons-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  padding: 0;
  overflow: hidden;
}

.addons-table th {
  text-align: left;
  padding: 24px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-main);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
}

.addons-table td {
  padding: 20px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.addons-table tr:last-child td {
  border-bottom: none;
}

.addons-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

/* FAQ */
.faq-item {
  padding: 0;
  margin-bottom: 20px;
  cursor: pointer;
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-main);
}

.faq-toggle {
  transition: transform 0.3s ease;
  color: var(--primary);
  font-size: 0.8rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px;
  display: none;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border);
  margin-top: -1px;
  padding-top: 24px;
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
  background: #000;
  margin-top: 100px;
}

.footer-col h4 {
  color: var(--text-main);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
}

.copyright {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
  transition: all 0.3s ease;
}

/* Form Container */
.form-container {
  min-height: 500px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

/* Utilities */
.section-padding {
  padding: 120px 0;
}

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

/* Responsive */
/* Tablet and below */
@media (max-width: 1024px) {
  .pricing-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile and below */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  p {
    font-size: 1rem;
  }

  /* Header */
  header {
    height: 60px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    display: none;
  }

  nav.mobile-active {
    display: block;
  }

  header .container {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .logo {
    font-size: 1.25rem;
    flex-shrink: 0;
    min-width: 0;
  }

  .logo img {
    flex-shrink: 0;
  }

  .logo img {
    height: 28px;
  }

  /* Buttons - Full width on mobile except header */
  .btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 27px;
  }

  header .btn-primary {
    width: auto;
    max-width: none;
    padding: 6px 12px;
    font-size: 0.65rem;
    white-space: nowrap;
    min-width: auto;
    flex-shrink: 0;
    letter-spacing: 0.5px;
  }

  nav ul {
    gap: 30px;
  }

  nav.mobile-active ul {
    top: 60px;
    padding: 30px 20px;
  }

  /* Hero Section */
  .hero {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .hero h1 {
    margin-bottom: 0.75rem;
  }

  .hero p {
    margin-bottom: 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
  }

  /* Cards */
  .benefit-card,
  .pricing-card,
  .faq-item,
  .addons-table {
    padding: 24px;
  }

  /* Grid System */
  .grid {
    gap: 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .pricing-card.popular {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* Pricing */
  .price {
    font-size: 3rem;
    margin: 20px 0;
  }

  .price span {
    font-size: 1rem;
  }

  .popular-badge {
    top: -10px;
    right: 16px;
    padding: 4px 12px;
    font-size: 0.65rem;
  }

  /* Sections */
  .section-padding {
    padding: 60px 0;
  }

  /* Footer */
  footer {
    padding: 60px 0 30px;
    margin-top: 60px;
  }

  .copyright {
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.85rem;
  }

  /* FAQ */
  .faq-question {
    padding: 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px 20px;
    padding-top: 20px;
    font-size: 0.9rem;
  }

  /* Benefit Icons */
  .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  /* Contact Page Grid */
  .grid[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Form Container */
  .form-container {
    min-height: 500px;
  }

  /* Addons Table */
  .addons-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .addons-table thead {
    display: none;
  }

  .addons-table tbody {
    display: block;
  }

  .addons-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    background: var(--glass-bg);
  }

  .addons-table td {
    display: block;
    padding: 8px 0;
    border-bottom: none;
    text-align: left;
  }

  .addons-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
  }

  .addons-table td:first-child {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
  }

  .addons-table td:first-child:before {
    display: none;
  }
}

/* Very Small Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero {
    padding: 50px 0 30px;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .hero-cta {
    margin-top: 16px;
    gap: 10px;
  }

  .benefit-card,
  .pricing-card,
  .faq-item,
  .addons-table {
    padding: 20px;
  }

  .section-padding {
    padding: 50px 0;
  }

  .price {
    font-size: 2.5rem;
  }

  /* Buttons - Full width on very small mobile */
  .btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 27px;
    font-size: 0.85rem;
  }

  header .btn-primary {
    width: auto;
    max-width: none;
    padding: 6px 12px;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }

  .hero-cta .btn {
    font-size: 0.85rem;
    padding: 14px 27px;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    height: 22px;
  }

  header {
    height: 55px;
  }

  nav.mobile-active ul {
    top: 55px;
  }

  .form-container {
    min-height: 400px;
  }
}