/* ===========================
   land-hero (fully scoped)
   فونت‌ها از هدر اصلی سایت: IRANSans, Lalezar
   =========================== */

.ms-land-hero {
  /* رنگ‌ها و اندازه‌ها */
  --brand:#ec4899; --brand2:#f472b6; --accent:#8b5cf6; --ink:#171717; --muted:#616161;
  --container: min(1200px, 92vw);
  --hero-min: 560px; /* ارتفاع کمی بیشتر از قبل */
  color: var(--ink);
  background: transparent; /* بدون پس‌زمینه تزئینی */
  font-family: "IRANSans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.ms-land-hero * { box-sizing: border-box; }

.ms-land-hero__container {
  width: 95%;
  margin-inline: auto;
  padding: 3px 0; /* فضای عمودی بیشتر */
}

.ms-land-hero__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  min-height: var(--hero-min);
}
@media (max-width: 900px) {
  .ms-land-hero__grid {
    grid-template-columns: 1fr;
    min-height: 420px;
  }
}

/* متن‌ها */
.ms-land-hero__title,
.ms-land-hero__pill,
.ms-land-hero__btn {
  font-family: "Lalezar","IRANSans",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
}

.ms-land-hero__pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  background:#fdf2f8; color:#be185d; font-size:12px;
}

.ms-land-hero__title{
  margin:14px 0 8px;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.2;
  color: var(--ink);
}

.ms-land-hero__subtitle{
  color: var(--muted);
  line-height: 1.95;
  margin: 0 0 12px;
}

/* دکمه‌ها — بدون underline */
.ms-land-hero__btns{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 8px; }
.ms-land-hero__btn{
  display:inline-block; padding:12px 18px; border-radius:14px;
  font-weight:700; border:2px solid transparent; cursor:pointer;
  text-decoration:none !important;
}
.ms-land-hero__btn:link,
.ms-land-hero__btn:visited,
.ms-land-hero__btn:hover,
.ms-land-hero__btn:focus,
.ms-land-hero__btn:active { text-decoration:none !important; outline: none; }

.ms-land-hero__btn--primary{ background: linear-gradient(90deg, var(--brand), var(--brand2)); color:#fff; }
.ms-land-hero__btn--ghost  { background: transparent; border-color: var(--accent); color: var(--accent); }

/* تصویر — بدون باکس/پس‌زمینه/کادر */
.ms-land-hero__visual{
  /* هیچ پس‌زمینه یا بوردر ندارد؛ فقط layout */
}
.ms-land-hero__img{
  display:block; width:100%; max-height: 420px; object-fit: contain;
  /* بدون باکس/پس‌زمینه/کادر */
  background: transparent; border: none; box-shadow: none;
}
@media (min-width: 1200px){
  .ms-land-hero__img{ max-height: 480px; }
}
