.hero { width: 100%; box-sizing: border-box; }
.hero-container {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 60vh;
}

.hero-image {
  flex: 0 0 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
}
.hero-image-placeholder {
  width: 100%;
  max-width: 520px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.hero-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Right content block */
.hero-content {
  flex: 1 1 48%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* Headline */
.hero-content h1 {
  font-size: 44px;
  line-height: 1.05;
  margin: 0;
  color: #33393f;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Copy text */
.hero-text {
  color: #5b6368;
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
}

/* Buttons area */
.hero-buttons {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Responsive behavior */
@media (max-width: 1000px) {
  .hero-container { gap: 28px; margin: 28px auto; }
  .hero { padding-bottom: 12px; }
  .hero-image { flex-basis: 45%; }
  .hero-content h1 { font-size: 36px; }
}

@media (max-width: 760px) {
  .hero-container {
    flex-direction: column;
    align-items: stretch;
    margin: 22px auto;
  }

  .hero-image { order: 0; max-width: 100%; }
  .hero-image-placeholder { max-width: 100%; }
  .hero-content { order: 1; padding: 8px 6px; text-align: left; }

  .hero-content h1 { font-size: 28px; }
  .hero-text { font-size: 15px; }
  .hero-buttons { justify-content: flex-start; flex-wrap: wrap; }

  .hero .chatbot, .chatbot-circle { right: 14px; bottom: 18px; }
}

.u-hidden { display: none !important; }
