@media (max-width: 768px) {
  .menu-toggle,
  .menu-toggle a,
  .menu-overlay a {
    font-size: 24px !important;
  }
}

.idea-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 40px 20px;
}

/* SVG main visual */
.idea-bulb-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.idea-bulb-wrap svg {
  width: min(72vw, 760px);
  height: auto;
  opacity: 0.9;
  overflow: visible;
}

/* Text smaller, over SVG */
.idea-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  text-align: center;
  padding: 16px;
  margin-top: 360px;
}

.idea-hero-content h1 {
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.1;
  margin-bottom: 10px;
  color: #111111;
  font-weight: 600;
}

.idea-hero-content p {
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.45;
  color: #444444;
  margin: 0;
}

/* Mobile view */
@media (max-width: 768px) {
  .idea-hero {
    min-height: 82vh;
    padding: 40px 14px;
  }

  .idea-bulb-wrap svg {
    width: 118vw;
    max-width: 520px;
    opacity: 0.95;
    transform: translateY(-35px);
  }

  .idea-hero-content {
    max-width: 310px;
    padding: 10px;
    margin-top: 300px;
  }

  .idea-hero-content h1 {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .idea-hero-content p {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* Very small mobile */
@media (max-width: 420px) {
  .idea-bulb-wrap svg {
    width: 128vw;
    transform: translateY(-40px);
  }

  .idea-hero-content {
    margin-top: 285px;
  }
}
.idea-bulb-wrap img {
  width: min(72vw, 760px);
  height: auto;
  opacity: 0.9;
  display: block;
}

/* Mobile view */
@media (max-width: 768px) {
  .idea-bulb-wrap img {
    width: 105vw;
    max-width: 480px;
    opacity: 0.95;
    transform: translateY(-35px);
  }
}

/* Very small mobile */
@media (max-width: 420px) {
  .idea-bulb-wrap img {
    width: 115vw;
    transform: translateY(-40px);
  }
}