@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");

:root {
  --primary: #9eb0a9;
  --dark: #151616;
  --gray: #3a4041;
  --light: #ececec;
  --card: rgba(255, 255, 255, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Syne", sans-serif;
  background: var(--dark);
  color: white;
  overflow-x: hidden;
}

section {
  padding: 100px 8%;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.hero {
  min-height: 100vh;

  display: flex;
  flex-direction: column;

  justify-content: center;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(158, 176, 169, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(158, 176, 169, 0.1),
      transparent 40%
    ),
    linear-gradient(135deg, #151616, #202223, #151616);
}

.blur {
  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  background: #9eb0a9;

  opacity: 0.15;

  filter: blur(120px);
}

.blur1 {
  top: -150px;
  left: -100px;
}

.blur2 {
  bottom: -150px;
  right: -100px;
}

nav {
  width: 100%;

  padding: 35px 8%;

  position: absolute;

  top: 0;

  display: flex;

  align-items: center;
}

.logo {
  width: 55px;
}

.brand {
  margin-left: 18px;

  font-size: 20px;

  font-weight: 700;
}

.hero-content {
  width: min(720px, 90%);
  margin-left: 8%;

  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;

  padding: 8px 18px;

  border: 1px solid rgba(158, 176, 169, 0.3);

  border-radius: 50px;

  color: var(--primary);
  margin-top: 70px;

  margin-bottom: 30px;

  font-size: 14px;
}

.hero h1 {
  font-size: 64px;

  line-height: 1.1;

  margin-bottom: 30px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  color: #cfcfcf;

  font-size: 19px;

  line-height: 1.8;

  margin-bottom: 40px;
}

.button {
  display: inline-block;

  text-decoration: none;

  background: var(--primary);

  color: var(--dark);

  padding: 18px 34px;

  border-radius: 12px;

  font-weight: 700;

  transition: 0.3s;
}

.button:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 50px rgba(158, 176, 169, 0.25);
}

.section-title {
  margin-bottom: 60px;
}

.section-title span {
  color: var(--primary);

  font-size: 14px;

  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 42px;

  margin-top: 15px;
}

.about {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.about p {
  color: #c9c9c9;

  line-height: 2;

  margin-bottom: 25px;
}

.stats {
  display: grid;

  gap: 20px;
}

.stats div {
  background: var(--card);

  border: 1px solid rgba(158, 176, 169, 0.12);

  border-radius: 18px;

  padding: 28px;

  backdrop-filter: blur(12px);
}

.stats h3 {
  color: var(--primary);

  font-size: 30px;
}

.cards {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.card {
  background: var(--card);

  padding: 35px;

  border-radius: 18px;

  border: 1px solid rgba(158, 176, 169, 0.1);

  transition: 0.35s;
}

.card:hover {
  transform: translateY(-8px);

  border-color: var(--primary);
}

.card h3 {
  margin-bottom: 18px;

  color: var(--primary);
}

.card p {
  color: #bfbfbf;

  line-height: 1.8;
}

.services {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.services div {
  background: var(--card);

  border: 1px solid rgba(158, 176, 169, 0.1);

  padding: 30px;

  text-align: center;

  border-radius: 16px;

  font-weight: 600;
}

.services h3 {
  line-height: 20px;

  margin: 15px;

  color: var(--primary);
}

.services p {
  font-weight: 200;
}

.timeline {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 20px;
}

.timeline div {
  background: var(--card);

  padding: 35px;

  text-align: center;

  border-radius: 16px;

  border: 1px solid rgba(158, 176, 169, 0.12);

  font-size: 28px;

  color: var(--primary);

  font-weight: 700;
}

.timeline span {
  display: block;

  color: white;

  margin-top: 10px;

  font-size: 16px;

  font-weight: 500;
}

.portfolio {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.project {
  height: 460px;

  width: 265px;

  border-radius: 18px;

  background: linear-gradient(135deg, #3a4041, #222);

  border: 1px solid rgba(158, 176, 169, 0.15);

  justify-items: center;

  align-content: center;
}

.project video {
  display: flex;
  justify-content: center;
  height: 98%;

  border-radius: 18px;
}
.pricing {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.pricing div {
  background: var(--card);

  border: 1px solid rgba(158, 176, 169, 0.1);

  padding: 45px;

  border-radius: 18px;

  text-align: center;
}

.pricing h3 {
  color: var(--primary);

  margin-bottom: 15px;
}

.pricing strong {
  display: block;

  font-size: 34px;

  color: var(--primary);
}

.services-description strong {
  color: var(--primary);
}

footer {
  text-align: center;

  padding: 80px 20px;

  border-top: 1px solid rgba(158, 176, 169, 0.1);
}

.footer-logo {
  width: 70px;

  margin-bottom: 25px;
}

footer h2 {
  margin-bottom: 15px;
}

footer p {
  color: #bfbfbf;

  margin-bottom: 20px;
}

footer small {
  color: #888;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 44px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .portfolio {
    grid-template-columns: 1fr;
  }

  .pricing {
    grid-template-columns: 1fr;
  }
}
