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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #f5fbff;
  background: #061014;
  line-height: 1.6;
}

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

.hero {
  min-height: 94vh;
  padding: 28px 7%;
  background:
    linear-gradient(rgba(2, 16, 22, .46), rgba(2, 16, 22, .92)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 950;
  letter-spacing: 3px;
  font-size: 25px;
  line-height: 1;
}

.logo span {
  display: block;
  margin-top: 8px;
  color: #22d3ee;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-cta,
.btn,
button {
  background: #22d3ee;
  color: #061014;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(34, 211, 238, .25);
}

.hero-content {
  max-width: 830px;
  margin-top: 145px;
}

.eyebrow {
  color: #22d3ee;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 13px;
}

h1 {
  font-size: clamp(46px, 8vw, 96px);
  line-height: .9;
  margin-bottom: 26px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 20px;
  color: #d7ecf2;
  max-width: 660px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: none;
}

.section {
  padding: 82px 7%;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: #08181e;
}

.intro p:last-child {
  color: #b9d0d8;
  font-size: 19px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #061014;
}

.cards article,
.price-card,
.steps div,
form {
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(34, 211, 238, .18);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.cards p,
.price-card p,
.price-card li,
.steps p,
.contact p,
footer p {
  color: #bfd6de;
}

.packages {
  background: #0b1f27;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.price-card.featured {
  border-color: #22d3ee;
  box-shadow: 0 24px 70px rgba(34, 211, 238, .14);
}

.badge {
  display: inline-block;
  color: #061014 !important;
  background: #22d3ee;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.price {
  font-size: 42px;
  font-weight: 950;
  color: #fff !important;
  margin: 12px 0;
}

.price span {
  font-size: 15px;
  color: #8fb4bf;
}

ul {
  margin-top: 20px;
  padding-left: 18px;
}

li {
  margin-bottom: 10px;
}

.transformation {
  background:
    linear-gradient(rgba(2, 16, 22, .83), rgba(2, 16, 22, .93)),
    url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

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

.steps span {
  display: block;
  color: #22d3ee;
  font-weight: 950;
  margin-bottom: 18px;
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
  background: #08181e;
}

form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid rgba(34, 211, 238, .22);
  background: #061014;
  color: #fff;
  font-size: 16px;
}

textarea {
  min-height: 120px;
}

footer {
  padding: 36px 7%;
  border-top: 1px solid rgba(34, 211, 238, .18);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: #03090c;
}

@media (max-width: 1050px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards,
  .steps,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  nav,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-top: 95px;
  }
}
