.hero-home {
  background: #ffffff;
  padding: 5rem 0 3rem;
  overflow: hidden;
}
.hero-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-home-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1A1F3C;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  font-family: 'Inter', sans-serif;
}
.hero-orange { color: #FF6B35; }
.hero-home-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
}
.hero-diamond-wrap {
  position: relative;
  z-index: 2;
}

.hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-deco--left { 
  left: -90px;
  top: 0;  
}

.hero-deco--right { 
  right: -90px;
  top: 10px; 
}

@media (max-width: 768px) {
  .hero-home { padding: 3rem 0 2rem; }
  .hero-home-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-home-text h1 { font-size: 2rem; }
  {#.hero-deco--left, .hero-deco--right { display: none; }#}
  .hero-diamond-wrap img { max-width: 100% }
}
