/* ===== Hero Section ===== */
.wd-hero {
  padding-top: calc(var(--wd-header-height) + 3rem);
  padding-bottom: 4rem;
  background-color: var(--wd-bg-light);
}

.wd-hero-inner {
  max-width: var(--wd-container-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.wd-hero-content {
  flex: 1;
  max-width: 600px;
}

.wd-hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--wd-heading-color);
}

.wd-hero-subtitle {
  font-size: var(--wd-font-size-lg);
  color: var(--wd-body-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Earliest pickup badge */
.wd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wd-secondary);
  font-weight: 600;
  font-size: var(--wd-font-size-sm);
  margin-bottom: 0.75rem;
}

.wd-hero-badge svg,
.wd-hero-badge .wd-badge-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* CTA Buttons */
.wd-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
}

.wd-hero-ctas-row {
  display: flex;
  gap: 0.75rem;
}

.wd-hero-cta-primary {
  background-color: var(--wd-primary);
  color: var(--wd-text-white);
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: var(--wd-btn-radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--wd-font-primary);
  cursor: pointer;
  transition: var(--wd-transition);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  width: 100%;
}

.wd-hero-cta-primary:hover {
  background-color: var(--wd-primary-hover);
  color: var(--wd-text-white);
  text-decoration: none;
}

.wd-hero-cta-secondary {
  background-color: var(--wd-bg-white);
  color: var(--wd-body-color-dark);
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--wd-border-color);
  border-radius: var(--wd-btn-radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--wd-font-primary);
  cursor: pointer;
  transition: var(--wd-transition);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  width: 100%;
}

.wd-hero-cta-secondary:hover {
  background-color: var(--wd-bg-light);
  color: var(--wd-heading-color);
  text-decoration: none;
}

/* Commercial CTA */
.wd-hero-cta-commercial {
  background-color: var(--wd-accent);
  color: var(--wd-text-white);
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: var(--wd-btn-radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--wd-font-primary);
  cursor: pointer;
  transition: var(--wd-transition);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  flex: 1;
}

.wd-hero-cta-commercial:hover {
  opacity: 0.9;
  color: var(--wd-text-white);
  text-decoration: none;
}

.wd-hero-ctas-row .wd-hero-cta-primary {
  flex: 1;
}

/* Bullet points */
.wd-hero-bullets {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}

.wd-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--wd-body-color-dark);
}

.wd-hero-bullet-text {
  flex: 1;
  min-width: 0;
}

.wd-hero-bullet-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wd-secondary);
}

.wd-hero-bullet-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hero image */
.wd-hero-image {
  flex: 1;
  max-width: 480px;
}

.wd-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--wd-radius-lg);
  box-shadow: var(--wd-shadow-lg);
}
