
/* Hygentra shared V1.1 */
:root{
  --hygentra-blue:#2563eb;
  --hygentra-blue-dark:#1d4ed8;
  --hygentra-dark:#111827;
  --hygentra-line:#e5e7eb;
}
*{box-sizing:border-box}
html,body{max-width:100%;overflow-x:hidden}
.hygentra-site-header{
  position:sticky;
  top:0;
  z-index:5000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(229,231,235,.9);
}
.hygentra-site-header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.hygentra-site-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:22px;
  color:var(--hygentra-dark);
  text-decoration:none;
  white-space:nowrap;
}
.hygentra-site-brand img{
  width:44px;
  height:44px;
  object-fit:contain;
}
.hygentra-menu-button{
  display:none;
  width:auto;
  margin:0;
  border:0;
  border-radius:12px;
  background:var(--hygentra-dark);
  color:white;
  padding:10px 13px;
  font-weight:800;
  cursor:pointer;
}
.hygentra-site-nav{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:14px;
}
.hygentra-site-nav a{
  white-space:nowrap;
  color:#374151;
  text-decoration:none;
  font-weight:700;
  padding:9px 10px;
  border-radius:12px;
}
.hygentra-site-nav a:hover{background:#f3f4f6;color:var(--hygentra-blue)}
.hygentra-site-nav .primary{
  background:var(--hygentra-blue);
  color:white !important;
}
.hygentra-site-nav .primary:hover{background:var(--hygentra-blue-dark)}
@media(max-width:760px){
  .hygentra-site-header-inner{padding:12px 14px}
  .hygentra-menu-button{display:inline-flex;align-items:center;justify-content:center}
  .hygentra-site-nav{
    display:none;
    position:absolute;
    top:69px;
    left:14px;
    right:14px;
    background:white;
    border:1px solid var(--hygentra-line);
    border-radius:18px;
    box-shadow:0 18px 44px rgba(15,23,42,.14);
    padding:10px;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
  }
  .hygentra-site-nav.open{display:flex}
  .hygentra-site-nav a{display:block;padding:12px}
}


.anchor-back{
  text-align:right;
  margin-top:12px;
  margin-bottom:24px;
}
.anchor-back a{
  color:#2563eb;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
}
.anchor-back a:hover{text-decoration:underline}


/* Hygentra Lizenzpakete V2 */
.plans-six{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}
.plans-six .plan{
  position:relative;
  min-height:100%;
  display:flex;
  flex-direction:column;
  border-radius:26px;
  border:1px solid #e5e7eb;
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  box-shadow:0 16px 38px rgba(15,23,42,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plans-six .plan:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 52px rgba(15,23,42,.13);
  border-color:#bfdbfe;
}
.plans-six .plan.featured{
  border-color:#93c5fd;
  background:linear-gradient(180deg,#eff6ff,#ffffff 58%,#f8fafc);
}
.plans-six .plan.praxis,
.plans-six .plan.premium{
  border-color:#bbf7d0;
  background:linear-gradient(180deg,#ecfdf5,#ffffff 58%,#f8fafc);
}
.plans-six .price{
  font-size:34px;
  line-height:1;
  letter-spacing:-.04em;
  margin:12px 0 8px;
}
.plans-six .price::after{
  content:" / Jahr";
  display:block;
  margin-top:8px;
  font-size:13px;
  letter-spacing:0;
  color:#6b7280;
  font-weight:700;
}
.plans-six .monthly .price::after{
  content:" / Monat";
}
.plans-six .trial-note{
  align-self:flex-start;
}
.plans-six .price-note{
  min-height:38px;
}
.plans-six ul{
  flex:1;
}
.plans-six button{
  margin-top:auto;
}
@media(max-width:1100px){
  .plans-six{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .plans-six{grid-template-columns:1fr}
  .plans-six .price{font-size:30px}
}
