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

body {
  font-family: Inter, Arial, sans-serif;
  color: #111;
  line-height: 1.6;
}

/* NAV */
.nav {
  padding: 24px 40px;
  font-weight: 600;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero-line {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTON */
.btn {
  margin-top: 24px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

.btn.dark {
  background: #000;
  color: #fff;
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 120px 10%;
  background: #faf8f2;
}

.img {
  background: #ddd;
  border-radius: 12px;
}

.img.large { height: 280px; }
.img.small {
  height: 180px;
  width: 140px;
  position: absolute;
  right: -20px;
  bottom: -20px;
}

/* SERVICES */
.services {
  padding: 120px 10%;
}

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

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-img {
  height: 160px;
  background: #eee;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* TESTIMONIAL */
.testimonial {
  padding: 120px 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.rocket {
  height: 300px;
  background: #000;
  border-radius: 12px;
}

/* PRICING */
.pricing {
  padding: 120px 10%;
}

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

.price-card {
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 16px;
}

/* CTA */
.cta {
  background: #ffef5a;
  text-align: center;
  padding: 100px 20px;
}

/* FOOTER */
footer {
  padding: 40px;
  font-weight: 600;
}

