/* schluessel-ohne-karte.de — schlankes Stylesheet, Design angelehnt an die
   bisherige Seite (SiteOrigin Corp): Weiß, Akzent #d10065, Montserrat/Open Sans */

:root {
  --akzent: #d10065;
  --akzent-dunkel: #a80051;
  --text: #313131;
  --text-hell: #666;
  --hell: #f7f7f7;
  --rand: #e5e5e5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #1c1c1c;
  margin: 0 0 0.6em;
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.15rem; }

a { color: var(--akzent); }
a:hover { color: var(--akzent-dunkel); }

img { max-width: 100%; height: auto; }

.innen { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.innen.schmal { max-width: 780px; }

.springen {
  position: absolute; left: -9999px;
}
.springen:focus {
  left: 10px; top: 10px; z-index: 100;
  background: #fff; padding: 8px 14px;
}

/* Kopf */
.kopf {
  border-bottom: 1px solid var(--rand);
  background: #fff;
}
.kopf-zeile {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo img { display: block; width: 240px; height: auto; }
.navi { display: flex; align-items: center; gap: 18px; }
.navi a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600; font-size: 0.95rem;
  color: var(--text); text-decoration: none;
}
.navi a:hover { color: var(--akzent); }
.navi .sprache {
  border: 1px solid var(--rand); border-radius: 4px;
  padding: 2px 9px; font-size: 0.85rem; color: var(--text-hell);
}

/* Held-Bereich */
.held {
  background: linear-gradient(135deg, #fff 0%, #fdeef5 100%);
  border-bottom: 1px solid var(--rand);
  text-align: center;
  padding: 56px 0;
}
.held h1 { font-size: 2.3rem; max-width: 760px; margin: 0 auto 0.4em; }
.unterzeile { font-size: 1.15rem; color: var(--text-hell); margin: 0 0 1.4em; }
.knopf {
  display: inline-block;
  background: var(--akzent); color: #fff;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
  text-decoration: none;
  padding: 13px 30px; border-radius: 5px;
}
.knopf:hover { background: var(--akzent-dunkel); color: #fff; }

/* Abschnitte */
.abschnitt { padding: 48px 0; }
.abschnitt.hell { background: var(--hell); }

/* Vorteils-Karten */
.karten {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 10px;
}
.karte {
  background: #fff; border: 1px solid var(--rand); border-radius: 8px;
  padding: 28px 24px;
}
.symbol { display: block; width: 44px; height: 44px; color: var(--akzent); margin-bottom: 14px; }
.symbol svg { width: 100%; height: 100%; }

/* Schritte */
.schritte {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 10px;
  text-align: center;
}
.schritt img { width: 160px; height: auto; margin-bottom: 12px; }
.nummer {
  display: inline-block; width: 30px; height: 30px; line-height: 30px;
  background: var(--akzent); color: #fff; border-radius: 50%;
  font-size: 1rem; margin-right: 6px;
}

/* FAQ */
.faq details {
  border: 1px solid var(--rand); border-radius: 6px;
  margin-bottom: 10px; padding: 0 18px; background: #fff;
}
.faq summary {
  cursor: pointer; padding: 14px 0;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
}
.faq details[open] summary { border-bottom: 1px solid var(--rand); }
.faq p { padding-bottom: 6px; }

/* Kontakt-Spalten */
.spalten {
  display: grid; gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 32px;
}
address { font-style: normal; }

.karte-rahmen iframe { display: block; border-radius: 8px; }
.formular-rahmen { margin-top: 8px; }

/* Rechtstexte */
.rechtstext h2, .rechtstext h3 { margin-top: 1.6em; }
.rechtstext { overflow-wrap: break-word; }

/* Fuß */
.fuss {
  background: #1c1c1c; color: #bbb;
  padding: 26px 0; margin-top: 24px;
  font-size: 0.9rem;
}
.fuss-zeile {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.fuss p { margin: 0; }
.fuss a { color: #ddd; text-decoration: none; margin-left: 18px; }
.fuss a:first-child { margin-left: 0; }
.fuss a:hover { color: #fff; }

/* Cookie-Banner */
#cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: #1c1c1c; color: #eee;
  padding: 16px 20px;
  font-size: 0.9rem;
}
#cookie-banner .innen {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
#cookie-banner p { margin: 0; max-width: 720px; }
#cookie-banner a { color: #fff; }
#cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
  border: 0; border-radius: 5px; cursor: pointer;
  padding: 9px 20px; font-size: 0.9rem;
}
#cookie-banner .annehmen { background: var(--akzent); color: #fff; }
#cookie-banner .ablehnen { background: #444; color: #eee; margin-left: 8px; }

@media (max-width: 640px) {
  .held h1 { font-size: 1.7rem; }
  h1 { font-size: 1.7rem; }
  .logo img { width: 190px; }
  .kopf-zeile { flex-direction: column; gap: 10px; }
}
