* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0f172a;
  color: #fff;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 10%;
}

.logo {
  font-size: 26px;
  font-weight: 800;
}
.logo span { color: #38bdf8; }

.nav-btn {
  background: none;
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  padding-bottom: 30px;
}

.hero-content {
  padding: 90px 10% 40px;
  max-width: 700px;
}

.hero h1 { font-size: 3rem; }
.hero h1 span { color: #38bdf8; }
.hero p { margin: 20px 0; opacity: 0.85; }

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, #38bdf8, transparent 60%);
  opacity: 0.15;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.primary {
  background: #38bdf8;
  color: #000;
}

.outline {
  border: 1px solid #38bdf8;
  background: transparent;
  color: #38bdf8;
}

/* SECTIONS */
.section {
  padding: 70px 10%;
  text-align: center;
}

.dark { background: #020617; }

.section-title {
  font-size: 2.3rem;
  margin-bottom: 40px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.06);
  padding: 25px;
  border-radius: 18px;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 30px;
}

.testimonial {
  background: rgba(255,255,255,0.06);
  padding: 30px;
  border-radius: 22px;
  text-align: left;
}

.testimonial p {
  font-style: italic;
  opacity: 0.9;
}

.testimonial h4 {
  margin-top: 18px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* SHOWCASE */
.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 25px;
}

.work-card {
  background: rgba(255,255,255,0.06);
  padding: 28px;
  border-radius: 20px;
  text-align: left;
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 30px;
}

.price-card {
  background: rgba(255,255,255,0.06);
  padding: 35px;
  border-radius: 25px;
}

.highlight {
  border: 2px solid #38bdf8;
}

.price {
  font-size: 2.4rem;
  color: #38bdf8;
  margin: 15px 0;
}

ul { list-style: none; }
ul li { margin: 10px 0; }

.note {
  opacity: 0.6;
  margin-top: 25px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 25px;
  background: #020617;
  opacity: 0.6;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    padding: 80px 7% 30px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .section {
    padding: 60px 7%;
  }
}
