/* === Reset & Base === */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a2332;
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: #6b839e;
  text-decoration: none;
}

/* === CTA Button === */

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #1a2332;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-button:hover {
  background: #2a3a52;
  transform: translateY(-1px);
}

/* === Hero === */

.hero {
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, #f0f3f7 0%, #fff 100%);
}

.logo {
  max-width: 260px;
  height: auto;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.25rem;
  color: #6b839e;
  max-width: 540px;
  margin: 0 auto 40px;
}

/* === How It Works === */

.how-it-works {
  padding: 80px 24px;
  background: #fff;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
  color: #1a2332;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #1a2332;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #1a2332;
}

.step p {
  font-size: 0.95rem;
  color: #5a6a7e;
}

/* === Features === */

.features {
  padding: 80px 24px;
  background: #f5f7fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature {
  background: #fff;
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid #e4e8ee;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1a2332;
}

.feature p {
  font-size: 0.95rem;
  color: #5a6a7e;
}

/* === Bottom CTA === */

.bottom-cta {
  text-align: center;
  padding: 80px 24px;
  background: #fff;
}

.bottom-cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #1a2332;
}

.bottom-cta p {
  font-size: 1.1rem;
  color: #6b839e;
  margin-bottom: 32px;
}

/* === Pricing === */

.pricing {
  padding: 80px 24px;
  background: #fff;
}

.pricing h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8px;
  color: #1a2332;
}

.pricing-subtitle {
  text-align: center;
  color: #6b839e;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid #e4e8ee;
  border-radius: 8px;
  background: #f5f7fa;
}

.pricing-card.featured {
  border-color: #1a2332;
  background: #fff;
  box-shadow: 0 2px 12px rgba(26, 35, 50, 0.1);
}

.pricing-card h3 {
  font-size: 1.1rem;
  color: #1a2332;
  margin-bottom: 8px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
}

.pricing-card p {
  font-size: 0.9rem;
  color: #6b839e;
}

.pricing-note {
  text-align: center;
  color: #6b839e;
  font-size: 0.85rem;
  margin-top: 32px;
}

/* === Policies === */

.policies {
  padding: 80px 24px;
  background: #f5f7fa;
}

.policies h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
  color: #1a2332;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.policy {
  background: #fff;
  padding: 28px 32px;
  border-radius: 8px;
  border: 1px solid #e4e8ee;
}

.policy h3 {
  font-size: 1.1rem;
  color: #1a2332;
  margin-bottom: 10px;
}

.policy p {
  font-size: 0.9rem;
  color: #5a6a7e;
  line-height: 1.7;
}

.policy a {
  color: #6b839e;
  text-decoration: underline;
}

/* === Footer === */

footer {
  text-align: center;
  padding: 40px 24px;
  background: #1a2332;
  color: #8a9bb2;
  font-size: 0.9rem;
}

footer strong {
  color: #c8d3e0;
}

.contact {
  margin-top: 8px;
}

.contact a {
  color: #8a9bb2;
  transition: color 0.2s ease;
}

.contact a:hover {
  color: #c8d3e0;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #8a9bb2;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #c8d3e0;
}

/* === Responsive === */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .steps,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .logo {
    max-width: 200px;
  }
}
