* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #0b1120;
  color: #e5e7eb;
  line-height: 1.6;
}

/* HEADER */
header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

nav a {
  color: #c7d2fe;
  text-decoration: none;
  margin-left: 24px;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(15,23,42,.85), rgba(15,23,42,.85)),
    url("https://images.unsplash.com/photo-1553877522-43269d4ea984") center/cover;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  padding: 0 48px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.hero p {
  color: #c7d2fe;
  max-width: 600px;
  margin-bottom: 32px;
}

.cta {
  background: #6366f1;
  padding: 14px 32px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
}

/* SECTIONS */
section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 48px;
}

.subtitle {
  color: #c7d2fe;
  margin-top: 8px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.service {
  background: #020617;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1e293b;
}

.service img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service div {
  padding: 24px;
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.plan {
  background: #020617;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #1e293b;
}

.plan.highlight {
  border: 2px solid #6366f1;
  transform: scale(1.03);
}

.badge {
  background: #22c55e;
  color: #020617;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}

.price-block {
  margin: 16px 0 24px;
  color: #c7d2fe;
}

.features {
  list-style: none;
}

.features li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #1e293b;
}

.check { color: #22c55e; }
.cross { color: #ef4444; }
.note { color: #a5b4fc; }

.cta-btn {
  display: block;
  margin-top: 24px;
  text-align: center;
  background: #6366f1;
  padding: 14px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 16px;
}

/* FOOTER */
footer {
  background: #020617;
  text-align: center;
  padding: 48px;
  color: #94a3b8;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero h2 { font-size: 2.2rem; }
  .about { grid-template-columns: 1fr; }
  header { padding: 24px; }
}
