:root{
  --bg: #fbfbfd;
  --bg2:#f6f7fb;

  --text:#0b1020;
  --muted: rgba(11,16,32,.68);
  --line: rgba(11,16,32,.12);

  --salsa:#ff3b30;
  --mango:#ffb000;
  --berry:#7c5cff;

  --shadow: 0 18px 55px rgba(13,18,40,.12);
  --shadow2: 0 8px 22px rgba(13,18,40,.08);

  --r2: 26px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(1200px 900px at 10% 0%, rgba(255,59,48,.14), transparent 55%),
    radial-gradient(1200px 900px at 90% 10%, rgba(255,176,0,.14), transparent 58%),
    radial-gradient(900px 700px at 55% 105%, rgba(124,92,255,.08), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Optional: dezentes Noise gegen Banding */
body::before{
  content:"";
  position: fixed;
  inset:0;
  pointer-events:none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  opacity: .035;
  mix-blend-mode: multiply;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 20px 64px;
}

/* Hero */
.hero{
  display:flex;
  flex-direction:column;
  gap: 14px;
  margin-bottom: 22px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  letter-spacing:.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11,16,32,.65);
}

.kicker .pulse{
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--salsa), var(--mango));
  box-shadow:
    0 0 0 4px rgba(255,59,48,.12),
    0 0 26px rgba(255,176,0,.18);
}

h1{
  margin:0;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.sub{
  margin:0;
  color: var(--muted);
  max-width: 78ch;
  font-size: 16px;
}

/* Search */
.search-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.search{
  flex: 1 1 320px;
  padding: 12px 12px;
  border: 1px solid rgba(11,16,32,.16);
  border-radius: 14px;
  font-size: 15px;
  background: rgba(255,255,255,.86);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.search:focus{
  border-color: rgba(255,59,48,.55);
  box-shadow: 0 0 0 4px rgba(255,59,48,.12);
  background: rgba(255,255,255,.96);
}

/* Card */
.card{
  border-radius: var(--r2);
  border: 1px solid rgba(11,16,32,.10);
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(255,59,48,.08), transparent 68%),
    radial-gradient(700px 380px at -10% 110%, rgba(255,176,0,.06), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78));
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-head{
  margin-bottom: 10px;
}

.title{
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.desc{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

/* FAQ accordion */
.faq-list{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 10px;
}

.faq-item{
  border: 1px solid rgba(11,16,32,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  font-weight: 950;
  color: rgba(11,16,32,.92);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary::after{
  content: "＋";
  font-weight: 900;
  color: rgba(11,16,32,.55);
  flex: 0 0 auto;
}

.faq-item[open] summary::after{
  content: "—";
  color: rgba(255,59,48,.75);
}

.faq-item .answer{
  padding: 0 14px 14px;
  color: rgba(11,16,32,.82);
  font-size: 14px;
}

.faq-item .answer a{
  color: rgba(11,16,32,.92);
  font-weight: 900;
  text-decoration: none;
}
.faq-item .answer a:hover{ text-decoration: underline; }

/* Buttons */
.btn{
  appearance:none;
  border: 1px solid rgba(11,16,32,.14);
  background: rgba(255,255,255,.72);
  color: rgba(11,16,32,.90);
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 950;
  font-size: 14px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease, box-shadow .12s ease;
}

.btn:not(.btn-primary):hover{
  transform: translateY(-1px);
  border-color: rgba(11,16,32,.20);
  background: rgba(255,255,255,.90);
}

.btn-primary{
  border: 0;
  background: linear-gradient(135deg, var(--salsa), var(--mango));
  color: #1b0b0d;
  box-shadow: 0 12px 28px rgba(255,59,48,.16);
}

.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 44px rgba(255,59,48,.22);
}

/* Footer CTA */
.footer-cta{
  margin-top: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-cta p{
  margin:0;
  color: rgba(11,16,32,.68);
}
.footer-cta p b{
  color: rgba(11,16,32,.92);
}

@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
}