* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #eef2f7;
  color: #1c1c1c;
  line-height: 1.6;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: #0b1220;
  color: #fff;
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.4);
}

.logo {
  height: 60px;
}

.cta-header {
  background: #fff;
  color: #0b1220;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.cta-header:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0b1220, #1d2640);
  color: #fff;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero .eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #88a7d6;
  margin-bottom: 12px;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto 32px;
  color: #dfe5f3;
}

.cta-main {
  display: inline-block;
  background: #0b1220;
  color: #fff;
  padding: 16px 26px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-main:hover {
  background: #172a44;
  transform: translateY(-2px);
}

.final-cta .cta-main {
  background: #f8b400;
  color: #111827;
}

.final-cta .cta-main:hover {
  background: #f4a700;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 60px 40px;
  background: #fefefe;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feature {
  background: #f8f9fc;
  padding: 26px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.for-who, .pricing, .final-cta {
  padding: 60px 20px;
  text-align: center;
}
.for-who {
  background: #f5f7fb;
}
.pricing {
  background: #0b1220;
  color: #fff;
}
.final-cta {
  background: #111827;
  color: #fff;
}

.testimonials {
  padding: 60px 20px;
  background: #f6f7f9;
  text-align: center;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto 24px;
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin: 12px 0;
}

.pricing .price {
  color: #f6f7fb;
}

.testimonial-note {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
}

.footer {
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  background: #000;
  color: #fff;
}
