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

body {
  background: #050505;
  font-family: 'Inter', sans-serif;
  color: #eef2ff;
  overflow-x: hidden;
  cursor: default;
}

.cursor-follower {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 2px solid #F5B042;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.08s linear;
  z-index: 9999;
  opacity: 0.75;
  backdrop-filter: invert(0.2);
}

.noise-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(245, 176, 66, 0.08) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.navbar {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(245, 176, 66, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg {
  width: 44px;
  filter: drop-shadow(0 0 6px #F5B042);
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFF 30%, #F5B042 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-text span {
  font-size: 0.65rem;
  color: #F5B042;
  letter-spacing: 1px;
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #ddd;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #F5B042;
  text-shadow: 0 0 5px #F5B042;
}

.btn-outline {
  border: 1.5px solid #F5B042;
  background: transparent;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  color: #F5B042;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-outline:hover {
  background: #F5B042;
  color: #0a0a0a;
  box-shadow: 0 0 12px #F5B042;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 2px;
  background: #F5B042;
  margin: 5px;
  transition: 0.3s;
}

.hero {
  padding: 4rem 0 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  min-width: 280px;
}

.badge {
  background: rgba(245, 176, 66, 0.2);
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  color: #F5B042;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content h2 span {
  color: #F5B042;
  border-bottom: 3px solid #F5B042;
}

.hero-content p {
  font-size: 1.1rem;
  color: #b0b7c9;
  margin: 1.5rem 0;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #F5B042;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  font-weight: 700;
  color: #0a0a0a;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #ffc25e;
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(245, 176, 66, 0.4);
}

.btn-video {
  background: rgba(245, 176, 66, 0.15);
  border: 1px solid #F5B042;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  color: #F5B042;
  font-weight: 600;
  cursor: pointer;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #F5B042;
}

.glow-card {
  background: rgba(20, 20, 30, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 176, 66, 0.5);
  animation: float 5s infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.mockup-inner i {
  font-size: 2.5rem;
  color: #F5B042;
  margin: 0 8px;
}

.progress-card {
  margin-top: 20px;
  background: #111;
  border-radius: 20px;
  padding: 10px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 3rem 0 1rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70%;
  height: 3px;
  background: #F5B042;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-card {
  background: rgba(15, 15, 20, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(245, 176, 66, 0.2);
  transition: 0.4s;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #F5B042;
  box-shadow: 0 20px 30px -8px #F5B04230;
}

.service-icon {
  font-size: 2.8rem;
  color: #F5B042;
  margin-bottom: 1rem;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #2c2c3a;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.2s;
  color: #ccc;
}

.filter-btn.active,
.filter-btn:hover {
  background: #F5B042;
  color: #000;
  border-color: #F5B042;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.project-item {
  background: #0f0f17;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid rgba(245, 176, 66, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s forwards;
}

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

.project-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #F5B042;
}

.project-img {
  height: 160px;
  background: linear-gradient(145deg, #1b1b26, #0a0a0f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #F5B042;
}

.project-info {
  padding: 1rem;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.team-member-card {
  background: rgba(20, 20, 28, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  width: 400px;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid rgba(245, 176, 66, 0.3);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s, transform 0.5s;
  display: flex;
  flex-direction: column;
}

.team-member-card.visible {
  opacity: 1;
  transform: scale(1);
}

.team-member-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #F5B042;
  box-shadow: 0 25px 30px -12px #F5B04240;
}

.member-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-bottom: 3px solid #F5B042;
}

.member-info {
  padding: 1.2rem;
  flex: 1;
}

.member-info h4 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.member-info p {
  color: #F5B042;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.projects-list {
  margin: 0.8rem 0;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 5px;
}

.projects-list h5 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #bbb;
  margin-bottom: 6px;
  border-left: 2px solid #F5B042;
  padding-left: 8px;
}

.projects-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.projects-list li {
  background: rgba(245, 176, 66, 0.15);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.7rem;
  color: #F5B042;
}

.badge-count {
  background: #F5B04220;
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
  font-size: 0.7rem;
  display: inline-block;
  margin-top: 8px;
  border: 0.5px solid #F5B042;
}

.social-mini i {
  margin: 0 6px;
  color: #F5B042;
  cursor: pointer;
  transition: 0.2s;
}

.social-mini i:hover {
  transform: scale(1.2);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.video-card {
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #2c2c3a;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.video-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-thumb {
  position: relative;
}

.video-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.video-thumb i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: #F5B042;
  z-index: 2;
  text-shadow: 0 0 10px black;
}

.overlay-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  width: 85%;
  max-width: 900px;
  background: #000;
  border-radius: 24px;
  padding: 10px;
}

.close-modal {
  float: right;
  font-size: 32px;
  color: #F5B042;
  cursor: pointer;
}

#videoFrame {
  width: 100%;
  height: 450px;
  border-radius: 16px;
}

footer {
  border-top: 1px solid #F5B04230;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-icons i {
  font-size: 1.5rem;
  margin-left: 1rem;
  transition: 0.2s;
  color: #aaa;
}

.social-icons i:hover {
  color: #F5B042;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
  }
  .nav-links.nav-active {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .hero-content h2 {
    font-size: 2.2rem;
  }
  .container {
    padding: 0 1rem;
  }
  .team-member-card {
    width: 100%;
    max-width: 340px;
  }
}