:root {
  --brand: #7c3aed;
  --brand-2: #f472b6;
  --brand-3: #60a5fa;
  --brand-dark: #5b21b6;
  --text: #2a1a4a;
  --text-light: #6b5f8a;
  --card: rgba(255,255,255,.82);
  --border: rgba(124,58,237,.14);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: linear-gradient(160deg, #f3e8ff 0%, #ede9fe 40%, #e0f2fe 100%); background-attachment: fixed; line-height: 1.65; }
img { max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }

/* Floating pill navbar */
.navbar { position: sticky; top: 12px; z-index: 100; max-width: 1180px; margin: 12px auto 0; padding: 0 20px; }
.nav-pill { background: rgba(255,255,255,.65); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.8); border-radius: 60px; box-shadow: 0 8px 32px rgba(124,58,237,.15); display: flex; align-items: center; justify-content: space-between; padding: 10px 26px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--brand); }
.logo-tld { font-weight: 300; color: var(--text-light); }
.nav-links { list-style: none; display: flex; gap: 6px; }
.nav-links a { color: var(--text); font-size: 14.5px; font-weight: 600; padding: 7px 15px; border-radius: 30px; transition: all .2s; }
.nav-links a:hover { background: rgba(124,58,237,.1); color: var(--brand); }

/* Hero carousel - big glass card */
.hero-wrap { max-width: 1180px; margin: 20px auto 0; padding: 0 20px; }
.hero-carousel-wrap { position: relative; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 60px rgba(124,58,237,.25); border: 1px solid rgba(255,255,255,.7); }
.hero-carousel { position: relative; height: 440px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; display: block; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(91,33,182,.85) 0%, rgba(124,58,237,.55) 45%, rgba(96,165,250,.15) 100%); }
.hero-slide-text { position: absolute; left: 0; top: 50%; transform: translateY(-50%); max-width: 640px; padding: 0 52px; color: #fff; z-index: 3; }
.hero-slide-text h2 { font-size: 33px; line-height: 1.25; margin: 14px 0 10px; }
.hero-slide-text p { font-size: 16px; opacity: .93; margin-bottom: 20px; }
.read-more { display: inline-block; background: rgba(255,255,255,.92); color: var(--brand); padding: 12px 28px; border-radius: 40px; font-weight: 700; font-size: 15px; backdrop-filter: blur(6px); box-shadow: 0 6px 20px rgba(0,0,0,.18); transition: transform .2s; }
.hero-slide:hover .read-more { transform: scale(1.05); }
.hero-cat-tag { display: inline-block; background: rgba(255,255,255,.25); color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: 5px 14px; border-radius: 30px; margin-right: 8px; border: 1px solid rgba(255,255,255,.4); }
.hero-tag-anzeige { background: #fff; color: #d32f2f; border-color: #fff; }
.hero-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(255,255,255,.55); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.7); width: 46px; height: 46px; border-radius: 50%; font-size: 18px; cursor: pointer; color: var(--text); transition: background .2s; }
.hero-carousel-btn:hover { background: rgba(255,255,255,.9); }
.hero-carousel-prev { left: 16px; }
.hero-carousel-next { right: 16px; }
.hero-carousel-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hero-carousel-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,.8); background: transparent; cursor: pointer; transition: background .2s; }
.hero-carousel-dot.active { background: #fff; }

/* Latest glass cards */
.hero-latest { max-width: 1180px; margin: 30px auto 0; padding: 0 20px; }
.hero-latest-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.hero-latest-head h3 { font-size: 21px; color: var(--brand-dark); }
.hero-latest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hero-latest-card { background: var(--card); backdrop-filter: blur(12px); border-radius: 22px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(124,58,237,.1); transition: transform .25s, box-shadow .25s; }
.hero-latest-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(124,58,237,.22); }
.hero-latest-card img { width: 100%; height: 150px; object-fit: cover; }
.hero-latest-card-body { padding: 14px 16px 16px; }
.hero-latest-card-cat { font-size: 12px; font-weight: 800; color: var(--brand); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.hero-latest-card-title { font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--text); }

/* Category sections - gradient band headers */
.section-title { max-width: 1180px; margin: 46px auto 16px; padding: 0 20px; display: flex; justify-content: space-between; align-items: baseline; }
.section-title h2 { font-size: 27px; color: var(--brand-dark); }
.article-grid { max-width: 1180px; margin: 0 auto; padding: 10px 20px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.art-card { background: var(--card); backdrop-filter: blur(12px); border-radius: 22px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(124,58,237,.1); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.art-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(124,58,237,.22); }
.art-card-img img { width: 100%; height: 180px; object-fit: cover; }
.art-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; }
.art-card-cat { align-self: flex-start; font-size: 12px; font-weight: 800; color: #fff; background: linear-gradient(120deg, var(--brand), var(--brand-2)); padding: 4px 13px; border-radius: 20px; margin-bottom: 12px; }
.art-card-title { font-size: 17px; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 8px; }
.art-card-desc { font-size: 14px; color: var(--text-light); flex: 1; }
.art-card-meta { font-size: 12.5px; color: var(--text-light); margin-top: 12px; }

/* Category banner - gradient glass */
.cat-section { max-width: 1180px; margin: 50px auto 0; padding: 0 20px; }
.cat-banner { background: linear-gradient(120deg, rgba(124,58,237,.92), rgba(244,114,182,.85)); backdrop-filter: blur(10px); border-radius: 24px; padding: 28px 34px; color: #fff; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 14px 40px rgba(124,58,237,.28); border: 1px solid rgba(255,255,255,.3); }
.cat-banner h2 { font-size: 24px; margin-bottom: 4px; }
.cat-banner p { opacity: .92; font-size: 15px; }
.cat-icon { font-size: 44px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.15)); }

/* Checklist / tips glass panel */
.tips-panel { background: var(--card); backdrop-filter: blur(12px); border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(124,58,237,.1); padding: 30px 34px; }
.tips-panel h3 { font-size: 20px; margin-bottom: 16px; color: var(--brand-dark); }
.tips-panel ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 26px; }
.tips-panel li { padding: 12px 16px; background: rgba(255,255,255,.7); border-radius: 14px; font-size: 14.5px; border: 1px solid var(--border); }

/* FAQ inline */
.faq-panel { max-width: 1180px; margin: 10px auto 0; padding: 0 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.faq-item { background: var(--card); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 18px; padding: 18px 22px; }
.faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--brand-dark); }
.faq-item p { font-size: 14px; color: var(--text-light); }

/* CTA */
.compare-banner { max-width: 1180px; margin: 44px auto; padding: 0 20px; }
.compare-box { background: linear-gradient(120deg, rgba(124,58,237,.94), rgba(96,165,250,.88)); border-radius: 24px; padding: 32px 38px; display: flex; justify-content: space-between; align-items: center; gap: 22px; color: #fff; box-shadow: 0 14px 40px rgba(124,58,237,.3); }
.compare-box h3 { font-size: 21px; margin-bottom: 6px; }
.compare-box p { opacity: .93; font-size: 15px; }
.compare-btn { background: #fff; color: var(--brand); padding: 13px 30px; border-radius: 40px; font-weight: 700; white-space: nowrap; box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.compare-btn:hover { transform: scale(1.04); }

/* Footer */
.footer { background: linear-gradient(160deg, #2a1a4a, #1e1240); color: #cfc4ea; margin-top: 70px; border-radius: 40px 40px 0 0; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 48px 24px 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col a, .footer-col span { display: block; color: #cfc4ea; font-size: 14px; margin-bottom: 9px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 18px; font-size: 13px; color: #9d8fc7; }

/* Article page */
.article-wrap { max-width: 840px; margin: 34px auto; padding: 0 20px; }
.article-breadcrumb { font-size: 13.5px; color: var(--text-light); margin-bottom: 12px; }
.article-breadcrumb a { color: var(--text-light); }
.article-breadcrumb a:hover { color: var(--brand); }
.article-title { font-size: 33px; line-height: 1.22; margin-bottom: 10px; color: var(--brand-dark); }
.article-meta { font-size: 13.5px; color: var(--text-light); margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.article-hero-img { border-radius: 26px; overflow: hidden; margin-bottom: 28px; box-shadow: 0 18px 50px rgba(124,58,237,.25); border: 1px solid rgba(255,255,255,.7); }
.article-content { background: var(--card); backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 26px; padding: 34px 38px; box-shadow: 0 10px 36px rgba(124,58,237,.12); }
.article-content h2 { font-size: 23px; margin: 30px 0 12px; color: var(--brand-dark); }
.article-content h3 { font-size: 18px; margin: 22px 0 10px; }
.article-content p { margin-bottom: 14px; font-size: 16px; color: #3b2d5e; }
.article-content ul, .article-content ol { margin: 0 0 16px 22px; }
.article-content li { margin-bottom: 7px; font-size: 15.5px; color: #3b2d5e; }
.data-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 18px 0 24px; font-size: 14.5px; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 18px rgba(124,58,237,.1); }
.data-table th { background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff; text-align: left; padding: 11px 14px; }
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.75); }
.data-table tr:last-child td { border-bottom: none; }
.article-note { background: linear-gradient(120deg, rgba(124,58,237,.12), rgba(244,114,182,.12)); border-left: 4px solid var(--brand); padding: 15px 19px; border-radius: 0 14px 14px 0; margin: 18px 0; font-size: 15px; }
.article-faq { background: rgba(255,255,255,.7); border: 1px solid var(--border); border-radius: 16px; padding: 16px 20px; margin-bottom: 12px; }
.article-faq h3 { margin: 0 0 8px; font-size: 16px; color: var(--brand-dark); }
.article-faq p { margin: 0; }

/* Legal pages */
.legal-wrap { max-width: 840px; margin: 44px auto; padding: 0 20px 44px; }
.legal-wrap h1 { font-size: 30px; margin-bottom: 22px; color: var(--brand-dark); }
.legal-wrap h2 { font-size: 20px; margin: 26px 0 10px; color: var(--brand-dark); }
.legal-wrap p { margin-bottom: 12px; color: #3b2d5e; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-carousel { height: 350px; }
  .hero-slide-text { padding: 0 26px; }
  .hero-slide-text h2 { font-size: 25px; }
  .hero-latest-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .compare-box { flex-direction: column; text-align: center; }
  .article-content { padding: 24px 22px; }
  .tips-panel ul, .faq-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-latest-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
