
/* ========== DARK THEME ==========
.theme-dark {
  --bg: #0b1020;
  --card: #121a33;
  --muted: #8ea3c4;
  --text: #e9eef9;
  --accent: #53b1ff;
  --accent-2: #7cf0bd;
  --maxw: 1120px;
  --radius: 18px;
}
*/
/* ========== APPLE LIGHT THEME ========== */
.theme-apple {
  --bg: #fdfdfd;        /* fast weiß */
  --card: #ffffff;
  --muted: #a1a1a6;
  --text: #1d1d1f;
  --accent: #007aff;    /* iOS Blau */
  --accent-2: #34c759;  /* iOS Grün */
  --maxw: 1120px;
  --radius: 14px;
    --header-bg: #f2f2f7;
  --header-text: #1d1d1f;
  --footer-bg: #f2f2f7;
  --footer-text: #1d1d1f;

  --header-bg: #f2f2f7;
  --header-text: #1d1d1f;
  --footer-bg: #f2f2f7;
  --footer-text: #1d1d1f;
  --btn-primary-bg: var(--accent);     /* iOS Blau */
  --btn-primary-text: #fff;
  --btn-secondary-bg: #f2f2f7;         /* iOS hellgrau (System-Gray-6) */
  --btn-secondary-text: #1d1d1f;
  --btn-secondary-border: #d1d1d6;     /* zartes Grau */

}

/* ========== GOOGLE MATERIAL LIGHT THEME ==========
.theme-material {
  --bg: #fafafa;
  --card: #ffffff;
  --muted: #6b7280;
  --text: #202124;
  --accent: #1a73e8;
  --accent-2: #ea4335;
  --maxw: 1200px;
  --radius: 8px;
  --header-bg: #ffffff;
  --header-text: #202124;
  --footer-bg: #f1f3f4;
  --footer-text: #202124;

  --btn-primary-bg: var(--accent);
  --btn-primary-text: #fff;
  --btn-secondary-bg: #f1f3f4;
  --btn-secondary-text: #202124;
  --btn-secondary-border: #dadce0;

}
*/
    *{box-sizing:border-box}
    html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif}
    a{color:var(--accent);text-decoration:none}
    a:hover{text-decoration:underline}
    .container{max-width:var(--maxw);margin-inline:auto;padding:24px}
    header{position:sticky;top:0;backdrop-filter:saturate(150%) blur(6px);  color: var(--header-text);background: var(--header-bg);border-bottom:1px solid rgba(255,255,255,.06);z-index:10}
    nav{display:flex;align-items:center;justify-content:space-between;gap:16px}
    .brand{display:flex;align-items:center;gap:10px;font-weight:700;letter-spacing:.2px}
    .pill{display:inline-block;padding:.6rem 1rem;border-radius:999px;background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#06111b;font-weight:700}

    .hero{padding:64px 0}
    .hero-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:10px;align-items:center}
    .hero h1{font-size:clamp(28px,4vw,46px);line-height:1.15;margin:.2em 0 .5em}
    .sub{color:var(--muted);font-size:1.05rem}
    .cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
/* Gemeinsame Button-Grundform */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  padding: 0.6em 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* Primary-Button */
.btn.primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: none;
}

/* Secondary-Button */
.btn.secondary {
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border: 1px solid var(--btn-secondary-border);
}

/* Hover-Effekt (optional) */
.btn.primary:hover {
  background-color: var(--accent-2); /* z.B. Akzent 2 als Hover */
}
.btn.secondary:hover {
  background-color: var(--btn-secondary-border);
}


    .card{background:var(--card);border:1px solid rgba(255,255,255,.06);border-radius:var(--radius);padding:22px}
    .grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    .grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
    .grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}


h2{font-size:clamp(22px,2.8vw,32px);margin:16px 0}
h3{display:flex;align-items:center;gap:8px}
.icon{width:20px;height:20px;flex-shrink:0;color:var(--accent)}

.demo {
text-align: center;
}
.demo img {
max-width: 100%;
border: 1px solid #ccc;
border-radius: 10px;
margin-bottom: 10px;
}



    details{background:#0f1731;border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:14px 16px}
    details+details{margin-top:10px}
    summary{cursor:pointer;font-weight:700}
    summary::-webkit-details-marker{display:none}

    .footer{margin-top:48px;padding:28px 0;border-top:1px solid rgba(255,255,255,.08);background: var(--footer-bg); color: var(--footer-text);}

    .card:hover {
  /*transform: translateY(-4px);*/
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/*.popup-overlay {
  display: none;
  position: fixed;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.popup-overlay.active {
  opacity: 1;
  display: flex;
}

.popup-content {
  color: #222;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.popup-overlay.active .popup-content { transform: scale(1); }
.popup-content h2 {
  color: #111;
}
.popup-content p {
  font-size: 1rem;
  line-height: 1.5;
}
*/


        .open-popup {
            display: inline-block;
            padding: 12px 25px;
            background: #4a6491;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .open-popup:hover {
            background: #2c3e50;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        /* Popup Styling */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: white;
            width: auto;
            height: 80vh;
            max-width: 800px;
            border-radius: 12px;
            padding: 30px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            Xtransform: translateY(50px);
            Xtransition: transform 0.4s ease;
        }

        .popup-overlay.active .popup-content {
            transform: translateY(0);
        }

           .exa-content {
            display: none;
            width: 100%;
            height: 100%;
        }
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #444;
}

.card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;

   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.card:hover {

  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Step Number Styling */
.step-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.5rem;
}


footer a.footer-link {
  color: var(--footer-text);
  text-decoration: none;
  margin: 0 0.5em;
  font-size: 0.9em;
}

footer a.footer-link:hover {
  text-decoration: underline;
}
.XXpreview-img { width: 100%; height: auto; margin-top: 20px; border-radius: 10px; transition: transform 0.3s ease; }
.preview-img {
  width: 50vw;   /* 50% der Bildschirmbreite */
  height: auto;  /* Höhe proportional */
  max-width: 100%;
}

.popup-content:hover .preview-img { transform: scale(1.02); }

.faq {
  padding: 3rem 2rem;
  background-color: var(--bg);
  color: var(--text);
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Grid Layout */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ads {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding: 10px;
  margin: 20px 0;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #666;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.ads-row {
  display: flex;
  gap: 10px;
}

.ads-row .ads {
  flex: 1;
}


.ad-warning {font-size: 0.9em; color: #b00; margin-bottom: 5px; font-weight: bold}
.adsbygoogle {display: block}
.ad-note {font-size: 0.9em; color: #555; margin-top: 5px; font-weight: bold}


@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Card – ruhig, ohne große Animationen */
.faq-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Frage / Antwort */
.faq-card .question {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.faq-card .answer {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
}

.imprint-photo img {
  max-width: 500px;
padding:30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

    @media (max-width: 900px){
      .hero-grid{grid-template-columns:1fr}
      .grid-3{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .grid-4{grid-template-columns:1fr}
    }
    @media (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}

