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

:root {
  --bg-color: #121212;
  --bg-secondary: #000000;
  --card-bg: #181818;
  --card-hover: #282828;
  --text-color: #ffffff;
  --text-muted: #b3b3b3;
  --primary-color: #1db954; /* Vibrant Green */
  --accent-color: #1ed760; /* Lighter Green for hover */
  --border-color: #2a2a2a;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  background: radial-gradient(circle at top, #1e3224 0%, var(--bg-color) 60%);
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: #000 !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

.btn-outline {
  background-color: transparent;
  color: #fff !important;
  border: 1px solid var(--text-muted);
}

.btn-outline:hover {
  background-color: transparent;
  border-color: #fff;
  transform: scale(1.05);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Page Header */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, #181818, var(--bg-color));
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.page-header h1 span {
  color: var(--primary-color);
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* Pricing Grid */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  background: var(--card-hover);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
}

.features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  flex-grow: 1;
}

.features li {
  margin-bottom: 18px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  color: var(--text-muted);
}

.features li i {
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
  font-size: 1.1rem;
}

.pricing-card .btn {
  width: 100%;
}

/* Features Overview (Home) */
.features-overview {
  padding: 100px 0;
  background: #0a0a0a;
}
.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -1px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.feature-box {
  background: var(--bg-color);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: background-color 0.3s;
}
.feature-box:hover {
  background: var(--card-hover);
}
.feature-box i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}
.feature-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.feature-box p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Contact Page specific overrides */
.contact-section h3 {
  color: var(--primary-color) !important;
}
.contact-section p {
  color: var(--text-muted) !important;
}
.contact-section a {
  color: var(--primary-color) !important;
}

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: 80px 0 40px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Inline overrides cleanup */
section[style*="background"] {
    background: transparent !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    padding: 30px 0;
    gap: 25px;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    padding: 0 20px;
  }

  .pricing-grid, .features-grid {
    grid-template-columns: 1fr;
  }
}
