/* HERO SECTION STYLES - 2025 Edition */
.hero {
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-background-body);
  overflow: hidden;
  padding: 120px var(--space-8) var(--space-20);
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 35%;
  height: 50%;
  background: linear-gradient(135deg, rgba(217, 45, 39, 0.08) 0%, rgba(217, 45, 39, 0.02) 100%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  animation: float 15s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: linear-gradient(135deg, rgba(11, 31, 63, 0.05) 0%, rgba(11, 31, 63, 0.01) 100%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  animation: float 20s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(2%, 2%) rotate(5deg); }
}

.hero-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  padding: var(--space-4) var(--space-4) var(--space-4) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  max-width: 90%;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -150px;
  width: 300px;
  height: 300px;
  background: rgba(217, 45, 39, 0.03);
  border-radius: 50%;
  transform: translateY(-50%);
  filter: blur(80px);
  z-index: -1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, var(--font-size-display));
  margin-bottom: var(--space-8);
  line-height: 1.1;
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-tight);
  overflow: hidden;
}

.hero-content h1 span {
  display: block;
  transform: translateY(0);
  opacity: 1;
  animation: fadeSlideUp 0.8s ease-out forwards;
}

.hero-content h1 span:first-child {
  color: var(--color-text-primary);
  animation-delay: 0.1s;
}

.hero-content h1 span:nth-child(2) {
  color: var(--color-brand-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1.1em;
  animation-delay: 0.3s;
  position: relative;
}

/* Line removed as requested */
.hero-content h1 span:nth-child(2)::after {
  content: none;
}

/* Animation removed as not needed anymore */

.hero-content h1 span:last-child {
  color: var(--color-text-primary);
  animation-delay: 0.5s;
}

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-content p {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-10);
  color: var(--color-text-secondary);
  line-height: var(--line-height-unitless-normal);
  max-width: 90%;
  font-weight: var(--font-weight-regular); /* Changed from medium to regular for less bold text */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s 0.7s ease-out forwards;
}

.hero-buttons {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-16);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s 0.9s ease-out forwards;
}

.btn-primary {
  background-color: var(--color-brand-primary);
  color: var(--color-text-on-brand);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-duration-short);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4), transparent 70%);
  transform: translateX(-100%);
  transition: all 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  border: var(--border-width-thin) solid var(--color-border-interactive);
  cursor: pointer;
  transition: all var(--transition-duration-short);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--color-brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
  background-color: rgba(217, 45, 39, 0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s 1.1s ease-out forwards;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 202, 210, 0.3), transparent);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: var(--space-4);
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-brand-primary), transparent);
  border-radius: var(--radius-full);
  opacity: 0.7;
}

.hero-stat-value {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: 1;
  position: relative;
}

.hero-stat-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin-top: var(--space-1);
}

.hero-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s 0.3s ease-out forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(217, 45, 39, 0.05) 0%, rgba(217, 45, 39, 0.2) 100%);
  mix-blend-mode: multiply;
  z-index: 2;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, transparent 60%, var(--color-background-body) 95%);
  z-index: 3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: scaleZoom 30s linear infinite alternate;
}

@keyframes scaleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Responsive styles for the hero section */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero-content {
    padding: var(--space-10) var(--space-6);
    grid-row: 2;
  }

  .hero-image {
    height: 50vh;
    min-height: 400px;
    grid-row: 1;
  }

  .hero-image::after {
    background: linear-gradient(to bottom, transparent 70%, var(--color-background-body) 100%);
  }

  .hero-content h1 {
    font-size: var(--font-size-xxl);
    line-height: 1.2;
  }

  .hero-content p {
    font-size: var(--font-size-sm);
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: row;
    gap: var(--space-4);
    width: 100%;
    justify-content: space-between;
  }

  .btn-primary, .btn-secondary {
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-sm);
    flex: 1;
  }

  .hero-stats {
    gap: var(--space-4);
    justify-content: space-between;
    width: 100%;
    padding-top: var(--space-6);
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1;
    min-width: 70px;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: var(--space-8) var(--space-4);
  }
  
  .hero-content h1 {
    font-size: calc(var(--font-size-xxl) * 0.8);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .hero-stats {
    gap: var(--space-6);
  }
  
  .hero-stat {
    min-width: 65px;
  }
}

/* Hero Selling Points - Styled as subtle feature highlights */
.hero-selling-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
  max-width: 95%;
  position: relative;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.3s ease-out forwards;
}

.hero-selling-points::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-brand-primary-hover) 0%, transparent 100%);
  opacity: 0.2;
}

.hero-selling-point {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(11, 31, 63, 0.02) 0%, transparent 100%);
  transition: all var(--transition-duration-short);
  border-left: 2px solid rgba(217, 45, 39, 0.1);
}

.hero-selling-point:hover {
  background: linear-gradient(90deg, rgba(217, 45, 39, 0.03) 0%, transparent 100%);
  border-left: 2px solid rgba(217, 45, 39, 0.3);
  transform: translateX(2px);
}

.hero-selling-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-primary);
  border-radius: var(--radius-full);
  height: 28px;
  width: 28px;
  min-width: 28px;
  background-color: rgba(217, 45, 39, 0.08);
}

.hero-selling-point-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Responsive styles for selling points */
@media (max-width: 1000px) {
  .hero-selling-points {
    margin-top: var(--space-6);
    width: 100%;
    max-width: 100%;
  }
  
  .hero-selling-point {
    padding: var(--space-2);
  }
}

@media (max-width: 600px) {
  .hero-selling-points {
    gap: var(--space-2);
  }
  
  .hero-selling-point-text {
    font-size: 0.875rem;
  }
}
