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

:root {
  --primary-orange: #FF6B35;
  --dark-orange: #FF5722;
  --light-orange: #FFB84D;
  --dark-bg: #ffffff;
  --light-text: #1a1a1a;
  --secondary-text: #666666;
  --card-bg: #f5f5f5;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1.5rem;
}

.logo a {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-dropdown {
  position: relative;
}

.nav-link {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link:hover {
  color: var(--primary-orange);
}

.dropdown-arrow {
  font-size: 0.65rem;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  margin-top: 0.5rem;
  z-index: 1001;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:first-child {
  border-radius: 7px 7px 0 0;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 7px 7px;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: var(--primary-orange);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-menu {
  position: relative;
}

.user-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: background-color 0.2s ease;
  color: var(--light-text);
}

.user-button:hover {
  background-color: #f0f0f0;
}

.user-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
}

.user-email {
  font-size: 0.9rem;
  font-weight: 500;
}

.user-dropdown-menu {
  right: 0;
  left: auto;
  min-width: 200px;
}

.dropdown-header {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-divider {
  margin: 0.5rem 0;
  border: none;
  border-top: 1px solid #f0f0f0;
}

.dropdown-logout {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  color: var(--light-text);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 0 0 7px 7px;
}

.dropdown-logout:hover {
  background-color: #f5f5f5;
  color: var(--primary-orange);
}

.auth-buttons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.btn-login {
  padding: 0.5rem 1.2rem;
  background-color: transparent;
  color: var(--light-text);
  text-decoration: none;
  border: 1px solid var(--light-text);
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-login:hover {
  background-color: var(--light-text);
  color: white;
}

.btn-register {
  padding: 0.5rem 1.2rem;
  background-color: var(--primary-orange);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-register:hover {
  background-color: var(--dark-orange);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-small {
  padding: 0.6rem 1.5rem;
  background-color: var(--primary-orange);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background-color: var(--dark-orange);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

.btn-primary {
  padding: 0.9rem 2.5rem;
  background-color: var(--primary-orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  padding: 0.9rem 2.5rem;
  background-color: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-orange);
  color: white;
}

.hero-image {
  position: relative;
  height: 400px;
}

.gradient-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -70%); }
}

/* Products Section */
.products {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.products h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--light-text);
}

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

.product-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.product-card p {
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
}

.link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link:hover {
  color: var(--light-orange);
}

/* Features Section */
.features {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 4rem 2rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.feature-content p {
  color: var(--secondary-text);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.gradient-box {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.cta p {
  font-size: 1.2rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

/* Footer - Meta Style */
.footer {
  background-color: #1c1e21;
  padding: 0;
  margin-top: 4rem;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #b0b3b9;
  font-size: 0.95rem;
}

.footer-content {
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h5 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.7rem;
}

.footer-column a {
  color: #b0b3b9;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bottom-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-contact {
  display: flex;
  gap: 1.5rem;
}

.footer-contact p {
  color: #b0b3b9;
  font-size: 0.9rem;
  margin: 0;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--primary-orange);
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  color: #b0b3b9;
  font-size: 0.9rem;
  margin: 0;
}

/* Page Hero */
.page-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--secondary-text);
}

/* Content Sections */
.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-orange);
}

.about-section p {
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.value-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
}

.value-card h3 {
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--secondary-text);
  font-size: 0.95rem;
}

/* Products Detail */
.products-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  gap: 2rem;
}

.product-detail-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-detail-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
}

.product-header h2 {
  font-size: 1.8rem;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.product-header p {
  color: var(--secondary-text);
  font-size: 0.95rem;
}

.product-detail-card p {
  color: var(--secondary-text);
  margin: 1.5rem 0;
  line-height: 1.8;
}

/* Careers */
.careers {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.careers-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.careers-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-orange);
}

.careers-intro p {
  color: var(--secondary-text);
  font-size: 1.1rem;
}

.job-positions {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.job-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.job-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-3px);
}

.job-card h3 {
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.job-card p {
  color: var(--secondary-text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.benefits {
  text-align: center;
}

.benefits h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--primary-orange);
}

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

.benefit-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

.legal-section p {
  color: var(--secondary-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: var(--secondary-text);
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section ul li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.legal-section a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  text-decoration: underline;
  color: var(--dark-orange);
}

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

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-top {
    padding: 2rem 1rem;
  }

  .footer-bottom {
    padding: 1.5rem;
  }

  .footer-brand h3 {
    font-size: 1.2rem;
  }
}
