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

body {
  background: #d9d9d9;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* HERO DESKTOP */
.hero-scroll {
  height: 200vh;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  position: relative;
}

/* DESKTOP DESIGN (UNCHANGED) */
.title {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 140px;
  font-weight: 900;
  color: #1c9aa6;
}

.script {
  position: absolute;
  left: 100px;
  top: 150px;
  font-family: 'Great Vibes', cursive;
  font-size: 100px;
}

.engineer {
  position: absolute;
  right: 120px;
  top: 180px;
}

.quote {
  position: absolute;
  right: 120px;
  top: 240px;
  width: 300px;
}

.buttons {
  position: absolute;
  top: 400px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 120px;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: black;
  color: white;
}

.btn.outline {
  background: transparent;
  border: 2px solid black;
  color: black;
}

.contact {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

.profile {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
}

/* ===== 🔥 ULTRA CLEAN MOBILE DESIGN ===== */
@media (max-width: 768px) {

  body {
    background: #f5f5f5;
  }

  .hero-scroll {
    height: auto;
  }

  .hero {
    position: relative;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 40px 20px;
    gap: 14px;
  }

  /* RESET */
  .title,
  .script,
  .engineer,
  .quote,
  .buttons,
  .contact,
  .profile {
    position: static !important;
    transform: none !important;
  }

  /* TYPOGRAPHY */
  .title {
    font-size: 42px;
    font-weight: 900;
  }

  .script {
    font-size: 38px;
  }

  .engineer {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .quote {
    font-size: 14px;
    max-width: 280px;
    line-height: 1.6;
  }

  /* BUTTONS */
  .buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
  }

  /* CONTACT */
  .contact {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  /* PROFILE */
  .profile {
    width: 200px;
    margin-top: 20px;
  }
}

/* SECTION */
.section {
  padding: 80px 20px;
  text-align: center;
}
