.area {
  position: relative;
  background-color: var(--background-1);
  justify-content: center;
  align-items: center;
  text-align: center;
}

#hero img, .feature img {
  box-shadow: 0 0 20px rgba(224, 18, 128, 0.5), 0 0 40px rgba(224, 18, 128, 0.2);
}

#hero {
  background-color: var(--background-1);
  text-align: center;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 200px;
  width: 100%;
}

#hero .stacked-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#hero .stacked-section h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

#hero .stacked-section p {
  max-width: 80%;
  margin: 0 auto 50px;
  color: var(--text);
  line-height: 1.5;
  font-size: 1.5rem;
}

#hero .stacked-section button {
  margin: 0 auto 60px;
}

#hero .stacked-section img {
  width: 100%;
  margin-top: 60px;
  padding-bottom: 20px;
}

.feature {
  text-align: left;
  position: relative;
  padding: 100px 40px;
  background: var(--background-2);
}

.feature hr {
  border: none;
  border-top: 1px solid #d1d5db;
  margin: 100px auto;
  max-width: 1200px;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1 1 450px;
}

.feature-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-text p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--muted);
}

.feature-img {
  flex: 1 1 450px;
}

.feature-img img {
  width: 100%;
  border-radius: 16px;
}

@media (max-width: 1168px) {
  #hero {
    padding: 120px 80px;
    min-height: calc(100vh - 80px);
  }
  
  #hero img {
    display: none;
  }
  
  #hero .stacked-section h1 {
    font-size: 3.5rem;
  }
  
  #hero .stacked-section p {
    font-size: 2rem;
    max-width: 600px;
  }
  
  #hero .stacked-section img {
    padding-bottom: 180px;
    margin-top: 40px;
  }
  
  .feature {
    padding: 80px 40px;
  }
  
  .feature hr {
    margin: 80px auto;
  }
  
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 60px;
    text-align: left;
  }
  
  .feature-text {
    flex: 1 1 100%;
    max-width: 700px;
  }
  
  .feature-text h2 {
    font-size: 2.3rem;
  }
  
  .feature-text p {
    font-size: 1.7rem;
  }
  
  .feature-img {
    flex: 1 1 100%;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 60px 24px 40px;
    min-height: calc(100vh - 80px);
  }
  
  #hero .stacked-section h1 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    font-weight: 700;
  }
  
  #hero .stacked-section p {
    font-size: 1.15rem;
    max-width: 100%;
    margin-bottom: 32px;
    line-height: 1.6;
  }
  
  #hero .stacked-section button {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
    margin-bottom: 50px;
  }
  
  #hero .stacked-section img {
    margin-top: 20px;
    padding-bottom: 100px;
    border-radius: 12px 12px 0 0;
  }
  
  .feature {
    padding: 60px 24px;
  }
  
  .feature hr {
    margin: 50px 0;
  }
  
  .feature-row {
    gap: 32px;
  }
  
  .feature-text {
    max-width: 100%;
  }
  
  .feature-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
  }
  
  .feature-text p {
    font-size: 1.3rem;
    line-height: 1.65;
  }
  
  .feature-img {
    max-width: 100%;
  }
  
  .feature-img img {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  #hero {
    padding: 50px 20px 30px;
  }
  
  #hero .stacked-section h1 {
    font-size: 2.25rem;
    line-height: 1.15;
  }
  
  #hero .stacked-section p {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }
  
  #hero .stacked-section button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  #hero .stacked-section img {
    padding-bottom: 80px;
  }
  
  .feature {
    padding: 50px 20px;
  }
  
  .feature hr {
    margin: 40px 0;
  }
  
  .feature-row {
    gap: 28px;
  }
  
  .feature-text h2 {
    font-size: 1.75rem;
  }
  
  .feature-text p {
    font-size: 1.1rem;
  }
}