/* Base Styles & Reset */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e1117;
  color: #c9d1d9;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Header */
.header {
  background-color: #161b22;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #30363d;
}
.container.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}
.logo-icon {
  height: 28px;
  width: 28px;
  margin-right: 0.5rem;
}
.nav-links a {
  color: #c9d1d9;
  margin-left: 2rem;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #58a6ff;
}
.cta-btn {
  background-color: #58a6ff;
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-left: 2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.cta-btn:hover {
  background-color: #3a76d2;
}

/* Combined Hero + Pricing Table Section */
.pricing-hero {
  background-color: #0d1117;
  padding: 4rem 2rem;
  color: #c9d1d9;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0rem;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  top: -28px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #f0f6fc;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: #8b949e;
  margin-bottom: 0rem;
  margin-top: 1.2rem;
  max-width: 800px;
}

/* Pricing Table Styles */
.pricing-table-wrapper {
  overflow-x: auto;
  width: 100%;
  max-width: 1400px;  /* increases actual width on large screens */
  margin: 0 auto;
  padding-top: 0rem;
  margin-top: 1rem !important; /* increased negative margin */
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  color: #c9d1d9;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid #30363d;
  text-align: center;
}

.pricing-table th {
  background-color: #0e1117;
  color: #58a6ff;
  font-weight: 600;
  font-size: 1.1rem;
}

.pricing-table td:first-child {
  text-align: left;
  color: #8b949e;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}


/* Call to Action Section */
.cta-section {
  background-color: #0e1117;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid #21262d;
}
.cta-section h2 {
  color: #f0f6fc;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-section p {
  color: #8b949e;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.cta-section .btn-primary {
  background-color: #58a6ff;
  color: white;
  padding: 0.85rem 2.2rem;      /* Increased padding */
  font-size: 1.1rem;        /* Larger text */
  border-radius: 8px;       /* Slightly rounder corners */
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 5rem;
  margin-bottom: 2.5rem;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.cta-section .btn-primary:hover {
  background-color: #3a76d2;
}

/* Footer */
.footer {
  background-color: #0d1117;
  border-top: 1px solid #21262d;
  padding: 2rem 2rem;
  color: #8b949e;
  font-size: 0.9rem;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  row-gap: 1rem;
}
.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links a,
.footer-social a {
  color: #8b949e;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.footer-links a:hover,
.footer-social a:hover {
  color: #58a6ff;
}
.footer-social a {
  font-weight: normal;
}
.footer p {
  flex-basis: 100%;
  text-align: center;
  margin-top: 1rem;
  color: #6e7681;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}

/* Responsive footer fix for smaller screens */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links,
  .footer-social {
    justify-content: center;
  }
