/* Ana sayfa açılış alanı: başlık ve durum kartı her ekranda ayrı kolonlarda kalır. */
@media (min-width:951px){
  #home.hero{
    display:grid!important;
    grid-template-columns:minmax(0,570px) 335px;
    grid-template-areas:"eyebrow console" "title console" "copy console" "actions console" "trust console";
    align-content:center;
    column-gap:78px;
    min-height:560px;
    padding-top:58px!important;
    padding-bottom:62px!important;
  }
  #home.hero>.eyebrow{grid-area:eyebrow}
  #home.hero>h1{grid-area:title;max-width:570px;margin-bottom:18px;font-size:clamp(48px,5vw,68px)}
  #home.hero>.hero-copy{grid-area:copy;max-width:530px}
  #home.hero>.hero-actions{grid-area:actions;margin:27px 0 45px}
  #home.hero>.trust{grid-area:trust;gap:34px}
  #home.hero>.hero-console{
    grid-area:console;
    position:relative;
    top:auto;
    right:auto;
    width:335px;
    margin:0;
    align-self:center;
  }
}
@media (max-width:950px){
  #home.hero{padding-top:55px!important}
  #home.hero>.hero-console{position:relative;right:auto;top:auto;margin:28px 0 0}
}
