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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #0e0e0e;
  color: #fff;
  line-height: 1.6;
}

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

header.hero {
  height: 100vh;
  background: linear-gradient(to bottom right, #111, #1e1e1e);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  animation: fadeIn 2s ease;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffc3;
}

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

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul li a {
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00ffc6;
}

.hero-content {
  text-align: center;
  margin-top: 10vh;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: slideIn 1.5s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #bbb;
  animation: fadeIn 2s ease;
}

.btn {
  padding: 1rem 2rem;
  background: #00ffc3;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 4rem 2rem;
  background: #181818;
}

.feature {
  width: 300px;
  margin: 1rem;
  padding: 2rem;
  background: #222;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.feature:hover {
  transform: translateY(-10px);
  background: #2a2a2a;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background: #111;
  color: #666;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-content {
  text-align: center;
  margin-top: 10vh;
  position: relative;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: slideIn 1.5s ease forwards;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #bbb;
  animation: fadeIn 2s ease;
}


.financial-graphic {
  margin-bottom: 2rem;
  animation: rotateGraphic 3s infinite linear;
}

@keyframes rotateGraphic {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

  .features {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .feature {
    width: 90%;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  header.hero {
    padding: 1rem;
  }

  nav ul {
    gap: 0.8rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

.financial-graphic {
  width: 100px;
  max-width: 100%;
  margin: 0 auto 2rem;
}