/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #020617;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #334155;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: #a78bfa;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.logo-accent {
  color: #a78bfa;
}

.nav-desktop {
  display: block;
}

.nav-mobile {
  display: none;
}

.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: #1e293b;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-item {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: none;
  border: none;
  color: #cbd5e1;
  text-align: left;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: color 0.2s;
}

.mobile-menu-item:hover {
  color: white;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: #7c3aed;
  color: white;
}

.btn-primary:hover {
  background-color: #6d28d9;
}

.btn-secondary {
  background-color: transparent;
  color: #cbd5e1;
  border: 1px solid #475569;
}

.btn-secondary:hover {
  background-color: #1e293b;
}

.btn-outline {
  background-color: transparent;
  color: #a78bfa;
  border: 1px solid #a78bfa;
}

.btn-outline:hover {
  background-color: #a78bfa;
  color: white;
}

.btn-icon {
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 4rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(2, 6, 23, 1) 50%, rgba(16, 185, 129, 0.2) 100%);
}

.hero-content {
  position: relative;
  max-width: 4xl;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.badge-icon {
  color: #a78bfa;
}

.badge-text {
  color: #c4b5fd;
  font-weight: 500;
  font-size: 0.875rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, #a78bfa 0%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* About Section */
.about {
  padding: 4rem 0;
  background-color: rgba(15, 23, 42, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 48rem;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.value-item {
  text-align: center;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 0.75rem;
  color: #a78bfa;
  margin-bottom: 1rem;
  transition: background-color 0.2s;
}

.value-item:hover .value-icon {
  background-color: rgba(124, 58, 237, 0.2);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.value-description {
  color: #94a3b8;
}

.mission-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 2rem;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.mission-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.mission-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-violet {
  color: #a78bfa;
}

.stat-emerald {
  color: #34d399;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Brands Section */
.brands {
  padding: 4rem 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.brand-card {
  background-color: rgba(15, 23, 42, 0.5);
  border: 1px solid #475569;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.brand-card:hover {
  border-color: #64748b;
}

.brand-header {
  margin-bottom: 1.5rem;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.brand-icon-violet {
  background-color: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: #a78bfa;
}

.brand-icon-emerald {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.brand-icon-blue {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.brand-icon-orange {
  background-color: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: #fb923c;
}

.brand-icon-pink {
  background-color: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
  color: #f472b6;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.brand-tagline {
  color: #94a3b8;
  font-weight: 500;
}

.brand-description {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.brand-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.brand-features li {
  display: flex;
  align-items: center;
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.brand-features li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: #a78bfa;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.brand-btn {
  width: 100%;
  justify-content: center;
}

.brand-card:hover .brand-btn {
  border-color: rgba(124, 58, 237, 0.5);
}

/* Footer */
.footer {
  background-color: #020617;
  border-top: 1px solid #334155;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-accent {
  color: #a78bfa;
}

.footer-description {
  color: #94a3b8;
  max-width: 28rem;
}

.footer-section-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: block;
  }

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

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

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

  .mission-content {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .mission-content {
    grid-template-columns: 1fr 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
