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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

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

.nav a:hover {
  color: #007bff;
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%),
    url('attached_assets/banner%20b2b%20jpg_1756925472303.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 1.2rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-form {
  padding: 12px 24px;
  background: #00FF88;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-form:hover {
  background: #00e67a;
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #25D366;
  color: white;
}

.btn-secondary:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* Form Section */
.form-section {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.form-content {
  max-width: 500px;
  margin: 0 auto;
}

.form-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.form-content p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lead-form input,
.lead-form textarea {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: #007bff;
}

.lead-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: #f8f9fa;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000;
}

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

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #000;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Products Section */
.products {
  padding: 80px 0;
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.products-intro {
  text-align: center;
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.product-image:hover {
  transform: translateY(-5px);
}

.product-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #000;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* Physical Stores Section */
.physical-stores {
  background: #f8f9fa;
  padding: 80px 0;
}

.stores-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.stores-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.stores-subtitle {
  font-size: 1.75rem;
  font-weight: 500;
  color: #007bff;
  margin-bottom: 2rem;
}

.stores-content p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.plus-benefits {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.plus-benefits h4 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1.5rem;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

.benefit-emoji {
  font-size: 1.5rem;
}

.requirements {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.requirement {
  background: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  color: #000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
  background: #000;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #f8f9fa;
  padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #000;
}

.footer-section p,
.footer-section a {
  color: #666;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: #007bff;
}

.footer-bottom {
  border-top: 1px solid #dee2e6;
  padding-top: 1rem;
  text-align: center;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .benefits h2,
  .products h2,
  .stores-content h2,
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .products-gallery {
    grid-template-columns: 1fr;
  }
  
  .requirements {
    flex-direction: column;
    align-items: center;
  }
  
  .container {
    padding: 0 15px;
  }
}
