.hero {
  padding: clamp(50px, 8vw, 100px) var(--rd-container-pad) clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: var(--rd-font);
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 120vw);
  height: min(700px, 120vw);
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(26px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -1.5px;
  color: var(--rd-text-primary);
  margin-bottom: 16px;
}

.hero h1 span {
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--rd-text-muted);
  max-width: 480px;
  margin: 0 auto 6px;
  line-height: 1.65;
}

/* Buttons */
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 36px;
}

.hero-btn-primary {
  background: var(--rd-primary);
  color: #fff;
  padding: clamp(10px,1.5vw,13px) clamp(20px,2.5vw,28px);
  border-radius: var(--rd-radius-md);
  font-size: clamp(13px,1.2vw,14px);
  font-weight: 600;
  transition: var(--rd-transition);
  text-decoration: none;
  display: inline-block;
}

.hero-btn-primary:hover {
  background: var(--rd-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.30);
}

.hero-btn-ghost {
  background: transparent;
  color: var(--rd-text-secondary);
  padding: clamp(10px,1.5vw,13px) clamp(20px,2.5vw,28px);
  border-radius: var(--rd-radius-md);
  font-size: clamp(13px,1.2vw,14px);
  font-weight: 500;
  border: 1px solid var(--rd-border);
  transition: var(--rd-transition);
  text-decoration: none;
  display: inline-block;
}

.hero-btn-ghost:hover {
  border-color: var(--rd-primary-border);
  color: var(--rd-primary);
}

/* Search */
.hero-search {
  display: flex;
  justify-content: center;
  margin-top: 0 !important;
}

.hero-search form {
  display: flex;
  width: min(460px, 92vw);
  border-radius: var(--rd-radius-md);
  overflow: hidden;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.10);
  transition: border-color 0.22s;
}

.hero-search form:focus-within {
  border-color: rgba(249,115,22,0.45);
}

.hero-search input {
  flex: 1;
  padding: clamp(10px,1.5vw,13px) 18px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--rd-text-primary);
  font-size: 14px;
  min-width: 0;
}

.hero-search input::placeholder {
  color: var(--rd-text-muted);
}

.hero-search button {
  border: none;
  padding: 0 20px;
  background: var(--rd-primary);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hero-search button:hover {
  background: var(--rd-primary-hover);
}

@media (max-width: 768px) {
  .hero h1 { letter-spacing: -0.8px; }
  .hero-btns { margin: 22px 0 28px; }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }
  .hero-btn-primary,
  .hero-btn-ghost {
    text-align: center;
    width: 100%;
  }
}