/* Path: reqrd.com/assets/css/pricing.css */

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

/* NAVIGATION (shared pattern from index.css) */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 16px 32px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: #2c3e50;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #0077cc;
}

.auth-links {
  display: flex;
  gap: 12px;
}

.secondary-link {
  color: #555;
  text-decoration: none;
  padding: 8px 12px;
  font-weight: 500;
}

.secondary-link:hover {
  text-decoration: underline;
}

.cta-button {
  background: #3498db;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #2980b9;
}

.cta-button.large {
  display: inline-block;
  padding: 14px 24px;
  font-size: 1.1rem;
}

/* INTRO SECTION */
.intro {
  text-align: center;
  padding: 60px 20px;
  background: #f0f8ff;
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.intro p {
  font-size: 1.2rem;
  color: #444;
}

/* PRICING PLANS */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.plan {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.2s ease;
}

.plan:hover {
  transform: translateY(-3px);
}

.plan h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.plan ul li {
  padding: 6px 0;
  font-size: 0.95rem;
}

/* CTA SECTION */
.cta {
  background: #e6f2ff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: #f5f5f5;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
}

footer nav a {
  color: #555;
  text-decoration: none;
  margin: 0 10px;
}

footer nav a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .auth-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .auth-links a {
    width: 100%;
    text-align: center;
  }

  .cta-button.large {
    width: 100%;
  }
}
