/* ==========================================================
   VORMELO – HILFE & SUPPORT
========================================================== */

.help-hero{
  padding:42px 0 76px;
  background:
    radial-gradient(circle at 88% 8%,rgba(37,99,235,.10),transparent 32%),
    linear-gradient(180deg,#ffffff 0%,#f7faff 100%);
}

.help-breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:38px;
  color:#64748b;
  font-size:.84rem;
}

.help-breadcrumb a{
  color:#64748b;
  text-decoration:none;
}

.help-hero-inner{
  max-width:820px;
  margin:0 auto;
  text-align:center;
}

.help-hero-inner h1{
  margin:10px 0 16px;
  color:#10213a;
  font-size:clamp(2.25rem,4vw,3.9rem);
  line-height:1.05;
  letter-spacing:-.045em;
}

.help-hero-inner p{
  max-width:720px;
  margin:0 auto;
  color:#617084;
  font-size:1rem;
  line-height:1.72;
}

.help-hero-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}


/* ==========================================================
   BEREICHE
========================================================== */

.help-section{
  padding:84px 0 90px;
  background:#ffffff;
}

.help-heading{
  max-width:760px;
  margin-bottom:42px;
}

.help-heading h2{
  margin:10px 0 14px;
  color:#10213a;
  font-size:clamp(1.9rem,3vw,2.9rem);
  line-height:1.1;
  letter-spacing:-.035em;
}

.help-heading p{
  margin:0;
  color:#65758a;
  line-height:1.7;
}

.help-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.help-card{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:18px;
  padding:26px;
  border:1px solid #dfe7f1;
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 32px rgba(15,44,85,.05);
}

.help-icon{
  display:grid;
  width:54px;
  height:54px;
  place-items:center;
  border-radius:15px;
  background:#edf4ff;
  color:#2563eb;
  font-size:1.25rem;
  font-weight:800;
}

.help-card h3{
  margin:2px 0 8px;
  color:#17304d;
  font-size:1.08rem;
}

.help-card p{
  margin:0 0 14px;
  color:#65758a;
  font-size:.88rem;
  line-height:1.65;
}

.help-card ul{
  margin:0;
  padding-left:18px;
  color:#55667a;
}

.help-card li{
  margin:6px 0;
  font-size:.82rem;
  line-height:1.45;
}

.help-card a{
  color:#2563eb;
  font-size:.84rem;
  font-weight:750;
  text-decoration:none;
}

.help-card a:hover{
  text-decoration:underline;
}

.help-card-contact{
  background:#f8fbff;
  border-color:#d6e4f7;
}


/* ==========================================================
   MODUL-LINKS
========================================================== */

.help-modules{
  padding:78px 0;
  background:#f7faff;
}

.help-module-links{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.help-module-links a{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:66px;
  padding:15px 17px;
  border:1px solid #dce6f2;
  border-radius:16px;
  background:#fff;
  color:#1c334f;
  text-decoration:none;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.help-module-links a:hover{
  transform:translateY(-2px);
  border-color:#bfd3f5;
  box-shadow:0 12px 28px rgba(15,44,85,.07);
}

.help-module-links span{
  display:grid;
  width:36px;
  height:36px;
  flex:0 0 36px;
  place-items:center;
  border-radius:10px;
  background:#edf4ff;
  color:#2563eb;
}


/* ==========================================================
   CTA
========================================================== */

.help-cta{
  padding:34px 0 82px;
  background:#ffffff;
}

.help-cta-card{
  display:grid;
  grid-template-columns:64px minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  padding:28px 32px;
  border:1px solid #d5e4f8;
  border-radius:22px;
  background:#f7faff;
}

.help-cta-icon{
  display:grid;
  width:60px;
  height:60px;
  place-items:center;
  border-radius:17px;
  background:#2563eb;
  color:#fff;
  font-size:1.3rem;
}

.help-cta-card h2{
  margin:6px 0 7px;
  color:#10213a;
  font-size:clamp(1.35rem,2.2vw,2rem);
  line-height:1.15;
}

.help-cta-card p{
  margin:0;
  max-width:720px;
  color:#65758a;
  font-size:.9rem;
  line-height:1.6;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:900px){

  .help-grid{
    grid-template-columns:1fr;
  }

  .help-module-links{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .help-cta-card{
    grid-template-columns:56px 1fr;
  }

  .help-cta-card .button{
    grid-column:1 / -1;
    justify-self:start;
  }
}

@media(max-width:620px){

  .help-hero{
    padding-top:28px;
  }

  .help-section,
  .help-modules{
    padding:62px 0;
  }

  .help-module-links{
    grid-template-columns:1fr;
  }

  .help-card{
    grid-template-columns:46px 1fr;
    padding:22px 18px;
  }

  .help-icon{
    width:46px;
    height:46px;
  }

  .help-cta-card{
    grid-template-columns:1fr;
    padding:24px 20px;
  }

  .help-cta-card .button{
    width:100%;
    justify-content:center;
  }

  .help-hero-actions{
    flex-direction:column;
  }

  .help-hero-actions .button{
    width:100%;
    justify-content:center;
  }
}


/* ==========================================================
   FIX – BUTTONS AUF HILFE-SEITE ERZWINGEN
========================================================== */

body[data-page="help"] .help-hero-actions a.button,
body[data-page="help"] .help-cta-card a.button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  min-height:48px !important;
  padding:0 24px !important;

  border-radius:12px !important;

  font-size:.92rem !important;
  font-weight:700 !important;
  line-height:1 !important;

  text-decoration:none !important;

  cursor:pointer !important;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease !important;
}


/* Primär – Blau */

body[data-page="help"] .help-hero-actions a.button-primary,
body[data-page="help"] .help-cta-card a.button-primary,
body[data-page="help"] .help-hero-actions a.button-primary:visited,
body[data-page="help"] .help-cta-card a.button-primary:visited{
  background:#2563eb !important;
  background-color:#2563eb !important;

  border:1px solid #2563eb !important;

  color:#ffffff !important;

  box-shadow:
    0 8px 20px rgba(37,99,235,.22) !important;
}

body[data-page="help"] .help-hero-actions a.button-primary:hover,
body[data-page="help"] .help-cta-card a.button-primary:hover{
  background:#1d4ed8 !important;
  background-color:#1d4ed8 !important;

  border-color:#1d4ed8 !important;

  color:#ffffff !important;

  transform:translateY(-2px) !important;
}


/* Sekundär – Weiss mit sichtbarem Rahmen */

body[data-page="help"] .help-hero-actions a.button-secondary,
body[data-page="help"] .help-hero-actions a.button-secondary:visited{
  background:#ffffff !important;
  background-color:#ffffff !important;

  border:1px solid #b9c9dc !important;

  color:#17304d !important;

  box-shadow:
    0 6px 16px rgba(15,44,85,.08) !important;
}

body[data-page="help"] .help-hero-actions a.button-secondary:hover{
  background:#f5f8fd !important;

  border-color:#2563eb !important;

  color:#2563eb !important;

  transform:translateY(-2px) !important;
}


/* Unterer CTA-Button etwas breiter */

body[data-page="help"] .help-cta-card a.button-primary{
  min-width:190px !important;
}


/* Mobile */

@media(max-width:620px){

  body[data-page="help"] .help-hero-actions a.button,
  body[data-page="help"] .help-cta-card a.button{
    width:100% !important;
  }
}
