/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  min-height: 44px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 750;
  border: 1px solid rgba(11,95,255,.20);
  box-shadow: var(--shadow2);
  text-decoration: none !important;
}
.btn:hover{
  background: var(--brandHover);
}
.btn--ghost{
  background: rgba(0,0,0,.05);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover{
  background: rgba(15,23,42,.04);
}
.btn--small{
  padding: 9px 12px;
  min-height: 38px;
  font-weight: 750;
}

/* =========================
   Topbar
========================= */
.hp{
  display: none;
}
.topbar{
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 6px 0;
}
.topbar__left, .topbar__right{
  display:inline-flex;
  gap:6px;
  flex-wrap:wrap;
  align-items: center;
  
}
.topbar__right {
  align-self: flex-end;
}
.topbar__link{
  color: var(--muted);
  font-weight: 650;
  text-decoration:none;
}
.topbar__link:hover{
  color: var(--text);
  text-decoration: underline;
}
.topbar svg {
  display: inline;
  color: #000066;
}
/* =========================
   Header
========================= */
.siteHeader{
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.headerMain{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.brand__logo{
  height: 100px;      /* Desktop */
  width: auto;
  padding: 14px;
}


.headerMain__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Badge (Desktop ok, Mobile aus) */
.badge{
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  min-width: 170px;
}
.badge__big{ font-weight: 900; }
.badge__small{ color: var(--muted); font-size: 12px; }

/* =========================
   Desktop Nav
========================= */
.nav{
  background: #fff;
  border-top: 1px solid var(--line);
}
.nav__inner{
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 12px 0;
}
.nav__inner a{
  color: var(--muted);
  font-weight: 750;
  text-decoration:none;
}
.nav__inner a:hover{
  color: var(--text);
  text-decoration: underline;
}
.nav__cta{
  margin-righ:auto;
  color: var(--brand) !important;
}

/* =========================
   Burger
========================= */
.burger{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  display:none;
  cursor:pointer;
}
.burger__lines{
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  display:block;
  margin:0 auto;
}
.burger__lines::before,
.burger__lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: var(--text);
}
.burger__lines::before{ top:-6px; }
.burger__lines::after{ top:6px; }

/* =========================
   Mobile Offcanvas Nav
========================= */
.navMobile{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.45);
  z-index: 9999;
  display:flex;
  justify-content:flex-end;
}
.navMobile[hidden]{ display:none; }

.navMobile__panel{
  width: min(300px, 70vw);
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--line);
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  box-shadow: -10px 0 30px rgba(0,0,0,.12);
  animation: slideIn .22s ease forwards;
}
@keyframes slideIn{
  from{ transform: translateX(100%); }
  to{ transform: translateX(0); }
}
.navMobile__close{
  align-self:flex-start;
  border: 0px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 850;
  cursor:pointer;
}
.navMobile__panel a{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-weight: 800;
  text-decoration:none;
}
.navMobile__panel a:hover{
  background: rgba(15,23,42,.04);
}

/* =========================
   Hero (klassisch, seriös)
========================= */
.hero{
  padding: 34px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items:center;
}
.kicker{
  margin:0 0 8px;
  color: var(--brand);
  font-weight: 850;
  text-align: right;
}
.hero h1{
  margin:0 0 10px;
  font-size: 18px;
  line-height: 1.08;
}
.lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
}
.hero__cta{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}
.hero__trust{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  display:grid;
  gap:6px;
}

.mediaCard{
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px){
  .badge{ display:none; }
  .nav__inner{ display:none; }
  .burger{ display:inline-grid; place-items:center; }
  .hero__grid{ grid-template-columns: 1fr; }
  .brand__claim{ font-size: 12px; }
}