:root {
    --claram-color-blue-dark: #264a6e;
    --claram-color-blue-dark-rgb: 38, 74, 110;
    --claram-color-blue: #3c7ec0;
    --claram-color-turquoise: #008496;
    --claram-color-green: #42ae72;

    --bs-white: #fff;
}

.ht-hero{
  /* Farben: hier an Hausfarben anpassen */
  --ht-soft:rgba(var(--claram-color-blue-dark-rgb), 0.15);     /* Fläche hinter dem Logo */
  --ht-logo:var(--claram-color-blue-dark);
  --ht-btn-ink: var(--bs-white);

  color:var(--claram-color-blue-dark);
  -webkit-font-smoothing:antialiased;
  padding: 0;
}

.ht-hero__inner{
  max-width:1100px;
  margin:0 auto;
  padding:76px 0;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:56px;
  align-items:center;
}

.ht-hero__title {
  margin: 0 0 15px 0;
  font-size:clamp(30px,4.6vw,40px);
  font-weight:600;
  line-height:1.12;
  letter-spacing:-.025em;
}

@media screen and (max-width: 576px) {
  .ht-hero__title {
    line-height:1.12 !important;
  }
}

.ht-hero__btn{
  display:inline-block;
  padding:13px 26px;
  border-radius:999px;
  background:var(--claram-color-blue-dark);
  color:var(--ht-btn-ink);
  font-size:15px;
  font-weight:600;
  letter-spacing:-.01em;
  text-decoration:none;
  transition:opacity .18s ease;
}
.ht-hero__btn:hover{
  opacity:.88;
  color:var(--ht-btn-ink);
}
.ht-hero__btn:focus-visible{outline:2px solid var(--ht-focus);outline-offset:3px}

/* Fläche rechts */
.ht-hero__mark{
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  padding:52px 32px;
}

/* Logo-Lockup: Bildmarke + Schriftzug */
.ht-hero__logo{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--ht-logo);
}
.ht-hero__logo svg{display:block;flex:none}
.ht-hero__logo span{
  font-size:19px;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  white-space:nowrap;
}
/* Echtes Logo als Bilddatei stattdessen:
   .ht-hero__logo img{display:block;height:32px;width:auto;max-width:100%} */

@media (max-width:900px){
  .ht-hero__inner{
    grid-template-columns:1fr;
    gap:36px;
    padding:56px 24px;
  }
  .ht-hero__mark{padding:40px 24px}
}
@media (max-width:600px){
  .ht-hero__inner{padding:44px 18px}
  .ht-hero__btn{display:block;text-align:center}
  .ht-hero__btn+.ht-hero__btn {margin-top: 1rem;}
}
@media (prefers-reduced-motion:reduce){
  .ht-hero__btn{transition:none}
}