.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 42px);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: .3px;
}

.section-subtitle {
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-stroke);
  padding: 20px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  margin-right: 12px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.btn-nav {
  padding: 8px 16px !important;
  font-size: 14px !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-content {
  max-width: 800px;
}

.hero-logo {
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 72px);
  margin-bottom: 24px;
  letter-spacing: .5px;
  background: linear-gradient(135deg, #ffffff 0%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-description {
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg-dark);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 40px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-stroke);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.team-section {
  background: rgba(255, 255, 255, 0.02);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-card:hover::before {
  opacity: 1;
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--glass-stroke);
  transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
  border-color: var(--accent);
  transform: scale(1.05);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.team-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
}

.team-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--glass-stroke);
}

.team-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-stat-value {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 20px;
}

.team-stat-label {
  color: var(--muted);
  font-size: 12px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.skill-card {
  background: var(--glass);
  border: 1px solid var(--glass-stroke);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.skill-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.skill-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.skill-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.skill-card:hover .skill-icon {
  color: #ffffff;
}

.skill-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.skill-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.services-section {
  background: rgba(255, 255, 255, 0.02);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: var(--accent);
  background: rgba(229, 231, 235, 0.08);
}

.service-card.featured::before {
  opacity: 0.5;
}

.service-card.featured:hover::before {
  opacity: 1;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.service-badge {
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
}

.service-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-features li {
  color: var(--muted);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-stroke);
  position: relative;
  padding-left: 24px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-features li:last-child {
  border-bottom: none;
}

.btn-service {
  width: 100%;
  text-align: center;
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.3) 0%, rgba(31, 41, 55, 0) 100%);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  letter-spacing: .3px;
}

.cta-description {
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn-cta {
  font-size: 16px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 600;
}

.btn-cta:hover {
  background: var(--accent-hover);
  color: var(--bg-dark);
}

.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--glass-stroke);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}

.footer-column {
  min-width: 150px;
}

.footer-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-stroke);
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .section {
    padding: 60px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 40px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
