/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #0a0f2c;
  overflow-x: hidden;
}

/* Navbar (reused) */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: underline;
  font-size: 1.125rem;
  color: #0a0f2c;
  transition: color 0.3s ease;
}

.contact-btn {
  text-decoration: none;
  background-color: #2d9cdb;
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #1992c4;
}

/* Pricing Hero */
.pricing-hero {
  padding: 6rem 2rem 3rem;
  text-align: center;
  background-color: #ffffff;
  color: #0a0f2c;
}

.pricing-hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.375rem;
  color: #555;
}

/* Pricing Cards Section */
.pricing-section {
  padding: 4rem 5vw 6rem;
  background-color: #f9f9f9;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a0f2c;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #2d9cdb;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  font-size: 1.125rem;
  color: #555;
  line-height: 2;
}

.featured {
  border: 2px solid #2d9cdb;
}

/* Pricing CTA */
.pricing-cta {
  background-color: #0a0f2c;
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pricing-cta:hover {
  background-color: #2d9cdb;
}

/* Footer Call to Action */
.footer-cta {
  background-color: #0a0f2c;
  color: #ffffff;
  text-align: center;
  padding: 5rem 2rem;
}

.footer-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.footer-content .cta {
  background-color: #2d9cdb;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.footer-content .cta:hover {
  background-color: #1992c4;
}

.footer-contact {
  margin-top: 2rem;
  font-size: 1rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-content h2 {
    font-size: 2rem;
  }

  .footer-content .cta {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
  }

  .footer-contact {
    font-size: 0.9rem;
  }
}

/* Compare Plans Section */
.plan-comparison {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.plan-comparison h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #0a0f2c;
}

.comparison-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.125rem;
  color: #0a0f2c;
}

.comparison-table thead {
  background-color: #f1f5f9;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border: 1px solid #e0e0e0;
}

.comparison-table td {
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-table {
    font-size: 1rem;
  }

  .plan-comparison h2 {
    font-size: 2rem;
  }
}

/* Default: show desktop, hide mobile */
.desktop-header {
  display: block;
}

.mobile-header {
  display: none;
}

/* Mobile Header Styling */
@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
  }

  .mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo {
    height: 28px;
  }

  .hamburger {
    font-size: 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #0a0f2c;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }

  .mobile-nav a {
    color: #0a0f2c;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav.show {
    display: flex;
  }
}
