body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
}

/* TOOLBAR */
.toolbar {
  position: fixed;
  right: 20px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toolbar a {
  color: #999;
  text-decoration: none;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  padding: 100px;
  min-height: 100vh;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 70px;
  line-height: 0.9;
  letter-spacing: -2px;
}

.hero-text span {
  color: #fff;
}

.subtext {
  color: #999;
  margin-top: 20px;
}

/* IMAGE */
.hero-image img {
  width: 300px;
  border-radius: 10px;
}

/* ROTATING TEXT */
.circle-text {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 150px;
  height: 150px;
}

.circle-text .text {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

/* INFO */
.info {
  display: flex;
  gap: 20px;
  padding: 80px;
}

.card {
  background: #111;
  padding: 30px;
  flex: 1;
}

/* SERVICES */
.services {
  padding: 80px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 80px;
}

/* CONTACT */
.contact {
  padding: 100px;
  text-align: center;
}