/* ===== HamrahDadeh Home (Public) ===== */

.hd-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 8, 10, .70);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hd-header__inner{
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hd-brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:#f3f4f6;
}
.hd-brand__mark{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:10px;
  background: linear-gradient(180deg, rgba(255,179,0,.95), rgba(255,211,106,.75));
  color:#111827;
  font-weight: 900;
}
.hd-brand__name{ font-weight: 700; }

.hd-nav{ display:flex; gap:18px; }
.hd-nav__link{
  color: rgba(243,244,246,.85);
  text-decoration:none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}
.hd-nav__link:hover{ background: rgba(255,255,255,.05); }
.hd-nav__link.is-active{ color:#FFD36A; }

.hd-header__actions{ display:flex; align-items:center; gap:10px; }

.hd-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  text-decoration:none;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.10);
  color:#f3f4f6;
}
.hd-btn--gold{
  background: linear-gradient(180deg, rgba(255,179,0,.95), rgba(255,211,106,.75));
  color:#111827;
  border-color: rgba(255,179,0,.45);
}
.hd-btn--ghost{ background: rgba(255,255,255,.03); }
.hd-btn--block{ width: 100%; }

.hd-burger{
  width: 42px; height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  display: none;
}
.hd-burger span{
  display:block;
  height:2px;
  margin: 6px 10px;
  background: rgba(243,244,246,.85);
  border-radius: 2px;
}

/* Mobile Menu */
.hd-mobile{ position: fixed; inset: 0; z-index: 60; }
.hd-mobile__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.55); }
.hd-mobile__panel{
  position:absolute; top:0; right:0;
  width: min(86vw, 340px);
  height: 100%;
  background: rgba(10,11,13,.96);
  border-left: 1px solid rgba(255,255,255,.08);
  padding: 14px;
}
.hd-mobile__top{ display:flex; align-items:center; justify-content:space-between; }
.hd-mobile__title{ color:#FFD36A; font-weight:800; }
.hd-mobile__close{
  width: 42px; height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color:#f3f4f6;
  font-size: 22px;
}
.hd-mobile__link{
  display:block;
  padding: 12px 10px;
  margin-top: 8px;
  border-radius: 12px;
  color: rgba(243,244,246,.90);
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.hd-mobile__link.is-active{ color:#FFD36A; }
.hd-mobile__cta{ margin-top: 14px; }

/* Hero */
.hd-hero{ margin-top: 18px; }
.hd-hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  padding: 34px;
}
.hd-hero__title{ margin:0; font-size: 34px; line-height: 1.45; color:#FFD36A; }
.hd-hero__subtitle{ margin-top: 10px; max-width: 46ch; color: rgba(243,244,246,.82); }

.hd-hero__buttons{ display:flex; gap:10px; margin-top: 18px; flex-wrap: wrap; }
.hd-hero__badges{ display:flex; gap:8px; margin-top: 16px; flex-wrap: wrap; }
.hd-badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,179,0,.18);
  background: rgba(255,179,0,.08);
  color: rgba(243,244,246,.90);
}

.hd-hero__visual{
  position: relative;
  min-height: 320px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hd-hero__laptop{
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.60));
}
.hd-hero__glow{
  position:absolute;
  inset: 10% 10% 10% 10%;
  background: radial-gradient(circle at 60% 40%, rgba(255,179,0,.22), transparent 60%);
  filter: blur(18px);
  z-index: -1;
}

/* Responsive */
@media (max-width: 900px){
  .hd-nav{ display:none; }
  .hd-burger{ display:block; }
  .hd-hero__grid{ grid-template-columns: 1fr; padding: 24px; }
  .hd-hero__title{ font-size: 28px; }
}
