@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f7f9fc;
  color: #08111f;
}

.header {
  background: white;
  border-bottom: 1px solid #e8edf5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  height: 74px;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 35px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  background: #4f46e5;
  color: white;
  padding: 7px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

.login-btn,
.admin-btn {
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 700;
}

.login-btn {
  background: #eef2ff;
  color: #4f46e5;
}

.admin-btn {
  background: #4f46e5;
  color: white;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
}

.hero {
  max-width: 1200px;
  margin: auto;
  min-height: 650px;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.badge,
.section-label {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #4f46e5;
}

.hero-text {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
}

.primary-btn {
  background: #08111f;
  color: white;
  box-shadow: 0 16px 35px rgba(8, 17, 31, 0.25);
}

.secondary-btn {
  background: white;
  color: #08111f;
  border: 1px solid #dbe3ef;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.uniform-card {
  width: 430px;
  height: 460px;
  background: linear-gradient(135deg, #dfe4ff, #f8fbff);
  border-radius: 28px;
  box-shadow: 0 35px 70px rgba(79, 70, 229, 0.22);
  position: relative;
  overflow: hidden;
}

.uniform-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 60px;
  left: 100px;
  filter: blur(12px);
}

.shirt-shape {
  width: 190px;
  height: 240px;
  background: linear-gradient(145deg, #4f46e5, #8b5cf6);
  border-radius: 40px 40px 20px 20px;
  position: absolute;
  top: 90px;
  left: 120px;
  transform: rotate(-6deg);
  box-shadow: 0 30px 50px rgba(79, 70, 229, 0.35);
}

.shirt-shape::before,
.shirt-shape::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 110px;
  background: #655df1;
  top: 20px;
  border-radius: 24px;
}

.shirt-shape::before {
  left: -45px;
  transform: rotate(25deg);
}

.shirt-shape::after {
  right: -45px;
  transform: rotate(-25deg);
}

.mini-card {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.mini-card h4 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.mini-card p {
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

.stats-strip {
  max-width: 1200px;
  margin: auto;
  background: white;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.stats-strip h3 {
  font-size: 28px;
}

.stats-strip p {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 95px 24px;
  text-align: center;
}

.section h2,
.premium-left h2,
.cta h2 {
  font-size: 46px;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: white;
  padding: 34px;
  border-radius: 22px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.07);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card span {
  color: #4f46e5;
  font-weight: 800;
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 21px;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
}

.premium-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 50px;
  background: #08111f;
  color: white;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.premium-left p {
  color: #cbd5e1;
  line-height: 1.8;
}

.industry-list div {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
}

.glass {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.cta {
  max-width: 900px;
  margin: 80px auto;
  padding: 70px 30px;
  text-align: center;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  border-radius: 34px;
}

.cta p {
  margin-bottom: 30px;
  color: #e0e7ff;
}

.cta form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta input {
  padding: 16px;
  border-radius: 10px;
  border: none;
}

.cta button {
  grid-column: span 2;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: #08111f;
  color: white;
  font-weight: 800;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 30px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 900px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .nav-links.active {
    display: flex;
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    background: white;
    flex-direction: column;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }

  .nav-links.active li {
    width: 100%;
  }

  .nav-links.active a {
    display: block;
    padding: 12px 0;
  }

  .nav-links.active .mobile-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
  }

  .nav-links.active .mobile-login-buttons a {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .uniform-card {
    width: 100%;
    max-width: 360px;
    height: 400px;
  }

  .grid,
  .grid.three,
  .premium-section {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    flex-direction: column;
    gap: 25px;
    margin: 0 20px;
  }

  .section h2,
  .premium-left h2,
  .cta h2 {
    font-size: 34px;
  }

  .premium-section {
    margin: 0 20px;
    padding: 45px 25px;
  }

  .industry-list div {
    font-size: 20px;
  }

  .cta {
    margin: 50px 20px;
  }

  .cta form {
    grid-template-columns: 1fr;
  }

  .cta button {
    grid-column: span 1;
  }
}
