/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  text-align: center;
  padding: 120px 0 80px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero .eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #6c5ce7;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   PRODUCT GRID
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 40px 0 80px;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.category-pill {
  font-size: 11px;
  font-weight: 600;
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.product-description {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-button {
  display: inline-block;
  padding: 12px 24px;
  background: #6c5ce7;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-button:hover {
  background: #5849be;
  transform: translateY(-2px);
}

/* ========================================
   BUNDLE GRID
   ======================================== */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  padding: 40px 0 80px;
}

.bundle-card {
  background: white;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(108, 92, 231, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6c5ce7, #8e44ad);
  border-radius: 16px 16px 0 0;
}

.bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.bundle-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bundle-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.bundle-includes {
  margin-bottom: 32px;
}

.bundle-includes h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bundle-includes ul {
  list-style: none;
  padding: 0;
}

.bundle-includes li {
  font-size: 15px;
  color: #555;
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.bundle-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6c5ce7;
  font-weight: bold;
}

.bundle-card .cta-btn {
  width: 100%;
  justify-self: flex-end;
  margin-top: auto;
}

/* ========================================
   HOMEPAGE CTA BUTTON STYLES
   ======================================== */
.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.cta-btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-action-lift {
  background: #6c5ce7;
  color: white;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.btn-action-lift:hover {
  background: #5849be;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108, 92, 231, 0.4);
}

.btn-action-outline {
  background: transparent;
  color: #6c5ce7;
  border: 2px solid #6c5ce7;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.1);
}

.btn-action-outline:hover {
  background: #6c5ce7;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108, 92, 231, 0.2);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.featured-kits {
  padding: 80px 0;
  background: rgba(108, 92, 231, 0.03);
}

.featured-kits h2 {
  font-size: 48px;
  font-weight: 800;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.coded-products {
  padding: 80px 0;
}

.coded-products h2 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}

.how-it-works {
  padding: 80px 0;
}

.how-it-works h2 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  padding: 0 40px;
}

.step-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.why-kits {
  padding: 80px 0;
}

.why-kits h2 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 0 40px;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

.product-library {
  padding: 80px 0;
  text-align: center;
}

.product-library h2 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.coming-soon {
  padding: 80px 0;
  text-align: center;
}

.coming-soon h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.coming-soon p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  color: #666;
  background-color: white;
  border-top: 1px solid #e5e5e5;
}

.footer a {
  color: #6c5ce7;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .product-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
  
  .product-card,
  .bundle-card {
    padding: 24px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .featured-kits,
  .coded-products,
  .how-it-works,
  .why-kits,
  .product-library,
  .coming-soon {
    padding: 60px 0;
  }
  
  .featured-kits h2,
  .coded-products h2,
  .how-it-works h2,
  .why-kits h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 480px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subtitle {
    font-size: 16px;
  }

  .product-card {
    padding: 24px;
  }

  .bundle-card {
    padding: 24px;
  }

  .bundle-card .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

