/* Hero Section Styles */
.hero-section {
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-subheadline {
  font-family: var(--font-primary-medium);
  font-size: 20px;
  color: #050505;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.hero-headline {
  font-family: var(--font-primary-bold);
  font-size: 36px;
  color: #050505;
  line-height: 1.36;
  margin-bottom: 20px;
}

.hero-description {
  font-family: var(--font-primary);
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.56;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
}

/* Stats inside hero */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-top: 8px;
}

.hero-stats .stat-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stats .stat-label {
  font-family: var(--font-primary-medium);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0;
  display: block;
  line-height: 26px;
}

.hero-stats .stat-label .stat-icon {
  display: inline-block;
  width: 18px;
  text-align: center;
  margin-right: 5px;
}

.hero-stats .stat-value {
  font-family: var(--font-primary-bold);
  font-size: 16px;
  color: #050505;
  display: block;
  line-height: 26px;
  text-transform: uppercase;
}

.hero-actions .btn {
  height: 51px;
  padding: 0 34px;
  border-radius: 6px;
  font-family: 'SF Pro Display', var(--font-primary-bold);
  font-size: 20px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.2px;
}

.hero-actions .btn.btn-secondary {
  background: transparent;
  color: #ff7001;
  border: 2px solid #ff9b4d;
  box-shadow: 3.014px 6.027px 18.836px 0px rgba(20, 20, 20, 0.15);
}

.hero-actions .btn.btn-primary {
  color: rgba(0, 0, 0, 0.9);
  background: #ff7001;
  background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.7), rgba(255,255,255,0) 70%);
  box-shadow: 3.014px 6.027px 18.836px 0px rgba(20, 20, 20, 0.15), 
              inset 1.507px 1.507px 3.014px 0px #fd7f78;
}

.hero-image-container {
  position: relative;
  flex: 1;
  min-width: 560px;
  max-height: 690px;
  width: 560px;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
}

.hero-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-headline { font-size: 42px; }
  .hero-image-container { min-width: 520px; width: 520px; }
}

@media (max-width: 992px) {
  .hero-container { flex-direction: column; gap: 28px; }
  .hero-content { max-width: 680px; text-align: left; }
  .hero-image-container { min-width: auto; width: 100%; aspect-ratio: 3/4; border-radius: 16px; }
}

@media (max-width: 640px) {
  .hero-section { padding: 120px 0 80px; }
  .hero-container { gap: 22px; }
  .hero-headline { font-size: 32px; }
  .hero-description { font-size: 16px; }
  .hero-actions { gap: 14px; flex-wrap: wrap; }
  .hero-actions .btn { height: 44px; padding: 0 22px; font-size: 14px; }
  .hero-image-container { width: 100%; aspect-ratio: 4/3; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stats .stat-label { font-size: 14px; }
  .hero-stats .stat-value { font-size: 16px; }
}
