* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #667eea;
  --primary-dark: #5568d3;
  --secondary: #764ba2;
  --accent: #f093fb;
  --success: #00d084;
  --text-dark: #1a1a2e;
  --text-light: #eaeaea;
  --bg-dark: #0f0f1e;
  --bg-lighter: #16213e;
  --border-color: #2d3561;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0f1e 0%, #16213e 100%);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-login {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f1e 0%, #16213e 50%, #1a0f3e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 147, 251, 0.1), transparent);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1), transparent);
  border-radius: 50%;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00d084, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  animation: slideInDown 0.8s ease;
}

.hero-content p {
  font-size: 1.4rem;
  color: #b0b0b0;
  margin-bottom: 3rem;
  animation: slideInUp 0.8s ease 0.2s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  animation: slideInUp 0.8s ease 0.4s both;
}

.stat {
  background: rgba(102, 126, 234, 0.05);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.stat strong {
  font-size: 1.8rem;
  display: block;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat span {
  font-size: 0.9rem;
  color: #999;
}

/* Buttons */
.btn-primary, .btn-secondary {
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Status Bar */
.status-bar {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem;
}

.status-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-item strong {
  display: block;
  color: var(--primary);
}

.status-item p {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.3rem;
}

/* Performance Section */
.performance {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.performance h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.metric-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.metric-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.metric-card p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.metric-card span {
  font-size: 0.85rem;
  color: #999;
}

/* Features Section */
.features {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.features h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-card p {
  color: #b0b0b0;
  line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.why-choose h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.benefit p {
  color: #b0b0b0;
}

/* Comparison Section */
.comparison {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.comparison h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparison-table {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  color: white;
}

table tr {
  border-bottom: 1px solid var(--border-color);
}

table td {
  padding: 1.5rem;
  color: var(--text-light);
}

table tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.checkmark {
  color: var(--success);
  font-weight: 600;
}

/* Pricing Section */
#pricing {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

#pricing h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.plan {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(240, 147, 251, 0.03));
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.plan:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.plan.featured {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.08));
  border: 2px solid var(--primary);
}

.plan.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.plan h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: #999;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  padding: 0.8rem 0;
  color: #b0b0b0;
  border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
  border-bottom: none;
}

/* Blog Section */
.blog {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.blog h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.blog-date {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.blog-card p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--accent);
}

/* Team Section */
.team {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.team h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-member {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.member-avatar {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.team-member p {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member span {
  color: #999;
  font-size: 0.9rem;
}

/* Security Section */
.security {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.security h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.security-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.security-item:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.security-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.security-item h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.security-item p {
  color: #b0b0b0;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.testimonials h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.testimonial {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.testimonial:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial strong {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.testimonial span {
  color: #999;
  font-size: 0.9rem;
}

/* FAQ Section */
#faq {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
}

#faq h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-container {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(240, 147, 251, 0.03));
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #b0b0b0;
  line-height: 1.8;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.08));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 2rem;
  margin: 4rem 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Contact Section */
#contact {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
}

#contact h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-container {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 12px;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 8px;
  color: var(--text-light);
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(102, 126, 234, 0.05);
}

.form-status {
  text-align: center;
  font-weight: 600;
  min-height: 20px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a15 0%, #0f0f1e 100%);
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #b0b0b0;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: #666;
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid,
  .features-grid,
  .benefits-grid,
  .blog-grid,
  .team-grid,
  .security-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan.featured {
    transform: scale(1);
  }

  .plan.featured:hover {
    transform: translateY(-8px);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .metrics-grid,
  .features-grid,
  .benefits-grid,
  .blog-grid,
  .team-grid,
  .security-features,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .status-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ===== ENHANCED UI & FUNCTIONS ===== */

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(20, 30, 60, 0.95);
  border-left: 4px solid #667eea;
  padding: 15px 20px;
  border-radius: 8px;
  color: #fff;
  min-width: 300px;
  animation: slideInRight 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.success { border-left-color: #00d084; }
.toast.error { border-left-color: #ff3b30; }
.toast.warning { border-left-color: #ffc107; }
.toast.info { border-left-color: #2196f3; }

@keyframes slideInRight {
  from { transform: translateX(400px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Spinner Animation */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 59, 48, 0.2);
  border-top-color: #ff3b30;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Search & Filter */
.search-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(20, 30, 60, 0.5);
  border: 2px solid rgba(102, 126, 234, 0.3);
  padding: 10px 15px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  transition: all 0.3s ease;
}

.search-bar:focus-within {
  border-color: #667eea;
  background: rgba(20, 30, 60, 0.7);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.search-bar input::placeholder { color: #a0a9c9; }

.filter-tag {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.active {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
}

/* ===== PLAN COLOR SCHEME ===== */

/* Plan Badges */
.plan-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid;
}

.plan-free {
  background: linear-gradient(135deg, rgba(169, 169, 169, 0.1), rgba(169, 169, 169, 0.05));
  color: #a0a0a0;
  border-color: rgba(169, 169, 169, 0.4);
}

.plan-standard {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(102, 126, 234, 0.1));
  color: #667eea;
  border-color: rgba(102, 126, 234, 0.5);
}

.plan-premium {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(240, 147, 251, 0.15));
  color: #f093fb;
  border-color: rgba(240, 147, 251, 0.6);
}

.plan-enterprise {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.15));
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.6);
}

/* Row Highlighting */
table tbody tr.free-user {
  background: rgba(169, 169, 169, 0.02);
  border-left: 3px solid rgba(169, 169, 169, 0.3);
}

table tbody tr.free-user:hover {
  background: rgba(169, 169, 169, 0.08);
}

table tbody tr.standard-user {
  background: rgba(102, 126, 234, 0.02);
  border-left: 3px solid rgba(102, 126, 234, 0.3);
}

table tbody tr.standard-user:hover {
  background: rgba(102, 126, 234, 0.08);
}

table tbody tr.premium-user {
  background: rgba(240, 147, 251, 0.06);
  border-left: 3px solid rgba(240, 147, 251, 0.5);
}

table tbody tr.premium-user:hover {
  background: rgba(240, 147, 251, 0.12);
}

table tbody tr.enterprise-user {
  background: rgba(255, 215, 0, 0.06);
  border-left: 3px solid rgba(255, 215, 0, 0.5);
}

table tbody tr.enterprise-user:hover {
  background: rgba(255, 215, 0, 0.12);
}
