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

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: #111827;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- NAVBAR --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-left h1 {
  font-size: 1.8rem;
  color: #2563eb;
  font-weight: 700;
}

.nav-right a {
  margin-left: 25px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #374151;
}
.nav-right .cta {
  background: #2563eb;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
}

/* --- HERO SECTION --- */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #ffffff;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 30px;
}

.btn-main {
  display: inline-block;
  background: #2563eb;
  padding: 14px 30px;
  color: white;
  font-size: 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  margin-right: 10px;
}

.btn-secondary {
  display: inline-block;
  background: #e5e7eb;
  padding: 14px 30px;
  color: #111827;
  font-size: 1.2rem;
  border-radius: 12px;
  font-weight: 600;
}

/* --- SECTIONS --- */
.section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.section p {
  font-size: 1.2rem;
  color: #4b5563;
  text-align: center;
}

.features-grid,
.product-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 40px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2563eb;
}

.card p {
  color: #374151;
  font-size: 1rem;
}

ul.list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

ul.list li {
  margin: 8px 0;
  font-size: 1.1rem;
  color: #374151;
}

/* CTA FOOTER */
.final-cta {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  margin-top: 60px;
}

.final-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-big {
  display: inline-block;
  padding: 16px 34px;
  background: #2563eb;
  color: white;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 600;
}

/* --- PRICING PAGE --- */

.pricing-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

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

.pricing-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  transition: transform .2s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.recommended .badge {
  background: #2563eb;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: .9rem;
  font-weight: 600;
}

.plan-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.plan-title.starter { color: #1e40af; }
.plan-title.pro { color: #2563eb; }
.plan-title.premium { color: #7c3aed; }

.plan-price {
  font-size: 2rem;
  font-weight: 700;
}

.plan-price span {
  font-size: 1rem;
  color: #6b7280;
  margin-left: 3px;
}

.plan-subprice {
  font-size: 1.15rem;
  color: #4b5563;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 26px;
}

.plan-features li {
  padding: 8px 0;
  font-size: 1.05rem;
}

/* --- COMPARISON TABLE --- */
.comparison-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.comparison-table th {
  background: #e0e7ff;
  padding: 15px;
  font-size: 1.1rem;
}

.comparison-table td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.05rem;
}
