html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Funnel Display', sans-serif;
  margin: 0;
  padding: 0;
}

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

.header {
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: .2s;
}

.nav a:hover {
  color: #001BFF;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  gap: 7px;
  z-index: 20;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

@media (max-width:900px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    flex-direction: column;
    gap: 0;
    background: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
  }

  .nav a {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    font-size: 1.2rem;
    border-bottom: 1px solid #111;
  }

  .hamburger {
    display: flex;
  }

  .nav.nav-open {
    max-height: 400px;
    transition: max-height .4s;
  }
}

body {
  padding-top: 88px;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 80vh;
  background: #001BFF;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 48px;
}

.hero-content {
  flex: 1;
  max-width: 800px;
}
  


.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-text {
  font-size: 1.3rem;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-actions {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
}

.btn-primary {
  background: #fff;
  color: #001BFF;
}

.btn-primary:hover {
  background: #001BFF;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #001BFF;
}

.banner-main {
  width: 340px;
  height: 340px;
  background: #fff url('banner.png') center/cover no-repeat;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 27, 255, .12);
}

.about {
  background: #fff;
  color: #000;
  padding: 80px 0;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.about-info {
  flex: 1;
}

.about-info .icon {
  font-size: 2.2rem;
  color: #001BFF;
}

.about-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-info p {
  font-size: 1.2rem;
}

.logo-icon {
  width: 20%;
  height: 20%;
  object-fit: contain;
  align-self: center;
}

.services {
  background: #000;
  padding: 80px 0;
}

.services h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

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

@media (max-width:1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #111;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 27, 255, .06);
}

.service-card .icon {
  font-size: 2.6rem;
  display: block;
  margin: 0 auto 16px auto;
  color: #001BFF;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 16px 0 12px;
}

.service-card p {
  font-size: 1.05rem;
}

.services-image {
  margin: 48px auto 0;
  width: 100%;
  max-width: 900px;
  height: 220px;
  background: #222 url('projects.png') center/cover no-repeat;
  border-radius: 20px;
}

.differentials {
  background: #fff;
  color: #000;
  padding: 80px 0;
}

.differentials h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.diff-card {
  background: #f5f5f5;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 27, 255, .04);
}

.diff-card .icon {
  font-size: 2.6rem;
  display: block;
  margin: 0 auto 16px auto;
  color: #001BFF;
}

.diff-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 16px 0 12px;
}

.diff-card p {
  font-size: 1.05rem;
}

.team-working {
  margin: 48px auto 0;
  width: 100%;
  max-width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.contact {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), #001BFF url('rocket.png') 20% 50%/cover no-repeat;
  color: #fff;
  padding: 80px 0;
}

.contact-flex {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.contact-details {
  margin-top: 24px;
  font-size: 1.05rem;
}

.contact-image {
  width: 340px;
  height: 340px;
  background: #fff url('map.png') center/cover no-repeat;
  border-radius: 24px;
}

.footer {
  background: #000;
  color: #fff;
  padding: 48px 0 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 8px;
}

.footer-brand .logo img {
  height: 40px;
  width: auto;
}

.logo-footer {
  height: 40px;
  width: auto;
  object-fit: contain;
  align-self: start;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links div {
  min-width: 140px;
}

.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 1rem;
  transition: .2s;
}

.footer-links a:hover {
  color: #001BFF;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0 0;
  font-size: .98rem;
  color: #888;
}

@media (max-width:900px) {

  .about-flex,
  .contact-flex,
  .footer-flex {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .footer-links div {
    min-width: auto;
    width: 100%;
  }

  .hero .container {
    flex-direction: column;
    gap: 32px;
  }

  .hero-image {
    width: 280px;
    height: 200px;
  }

  .banner-main,
  .about-image,
  .contact-image {
    width: 100%;
    max-width: 340px;
    height: 220px;
  }

  .team-working {
    height: 200px;
    max-width: 100%;
  }

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

@media (max-width:600px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .about-info h2,
  .services h2,
  .differentials h2,
  .contact-info h2 {
    font-size: 1.3rem;
  }

  .service-card h3,
  .diff-card h3 {
    font-size: 1rem;
  }

  .service-card p,
  .diff-card p {
    font-size: .95rem;
  }

  .about-image,
  .banner-main,
  .contact-image {
    height: 140px;
  }

  .team-working {
    height: 150px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 24px;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links h4 {
    margin-bottom: 16px;
    font-size: 1.2rem;
  }

  .footer-links a,
  .footer-links span {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}