:root{
    /* Light / Salsa brand mood */
    --bg: #fbfbfd;
    --bg2:#f6f7fb;

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

    --salsa:#ff3b30;   /* rot */
    --mango:#ffb000;   /* gold */
    --berry:#7c5cff;   /* optionaler Kontrast */

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

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

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

body{
  margin:0;
  color: var(--text);
  line-height: 1.55;
  background:
    /* weiche große Farbflächen (kein harter Schnitt) */
    radial-gradient(1200px 900px at 10% 0%, rgba(255,59,48,.14), transparent 50%),
    radial-gradient(1200px 900px at 90% 10%, rgba(255,176,0,.14), transparent 52%),
    radial-gradient(900px 700px at 55% 105%, rgba(124,92,255,.08), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  position: relative;
  background-repeat: no-repeat;   /* wichtig */
  background-attachment: fixed;   /* optional: stabiler Verlauf beim Scrollen */
  overflow-x: hidden;
}

/* Optional: sehr dezentes Noise gegen Banding (kannst du löschen, wenn du’s nicht willst) */
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;
}

/* Header */
.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;
}

.note{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r2);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  color: rgba(11,16,32,.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.note .i{
  width: 30px; height: 30px;
  border-radius: 30px;
  display:grid;
  place-items:center;
  font-weight: 1000;
  background: rgba(255,176,0,.18);
  border: 1px solid rgba(255,176,0,.25);
  flex: 0 0 auto;
}

/* Grid */
.grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card{
  grid-column: span 12;
  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,.92), rgba(255,255,255,.72));
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card:hover{
  transform: translateY(-3px);
  border-color: rgba(11,16,32,.16);
  box-shadow: 0 22px 70px rgba(13,18,40,.14);
}

/* 2) Flatrate: deutlich hervorheben */
.card.featured{
  position: relative;

  /* wichtig: echte Gradient-Border */
  border: 2px solid transparent;

  background:
    /* 1) dein Karteninhalt (Fill) */
    radial-gradient(900px 520px at 85% -25%, rgba(255,59,48,.22), transparent 62%),
    radial-gradient(900px 520px at 15% 120%, rgba(255,176,0,.20), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.80)) padding-box,

    /* 2) der Ring/Border als Gradient */
    linear-gradient(135deg, rgba(255,59,48,.55), rgba(255,176,0,.50)) border-box;

  box-shadow:
    0 26px 80px rgba(255,59,48,.14),
    0 18px 60px rgba(13,18,40,.14),
    inset 0 1px 0 rgba(255,255,255,.9);

  transform: translateY(-4px);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, border-color .18s ease;
}

/* Featured: eigener Hover, damit es deutlich “poppt” */
.card.featured:hover{
  transform: translateY(-8px); /* mehr Lift als normal */
  box-shadow:
    0 34px 110px rgba(255,59,48,.22),
    0 22px 70px rgba(13,18,40,.16),
    inset 0 1px 0 rgba(255,255,255,.92);
}



.top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.65);
  color: rgba(11,16,32,.82);
  font-weight: 950;
  font-size: 13px;
}

.icon{
  width: 28px; height: 28px;
  border-radius: 28px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(255,59,48,.16), rgba(255,176,0,.16));
  border: 1px solid rgba(11,16,32,.10);
  flex: 0 0 auto;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,59,48,.22);
  background: rgba(255,59,48,.10);
  color: rgba(11,16,32,.86);
  font-weight: 1000;
  font-size: 12px;
  white-space: nowrap;
}

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

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

.price{
  display:flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 12px;
}
.price strong{
  font-size: 36px;
  letter-spacing: -0.03em;
}
.price span{
  color: rgba(11,16,32,.58);
  font-weight: 900;
  font-size: 13px;
}

.subprice{
  margin: 0 0 14px;
  color: rgba(11,16,32,.76);
  font-size: 13px;
}
.subprice b{ color: rgba(11,16,32,.92); }

.contract{
  margin: 4px 0 14px;
  font-size: 13px;
  color: rgba(11,16,32,.65);
  line-height: 1.4;
}

.contract b{
  color: rgba(11,16,32,.85);
}

.wrap ul{
  list-style:none;
  padding:0;
  margin: 0 0 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.wrap li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 14px;
  color: rgba(11,16,32,.86);
}

.check{
  width: 18px; height: 18px;
  border-radius: 7px;
  margin-top: 2px;
  background: rgba(255,176,0,.18);
  border: 1px solid rgba(255,176,0,.30);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.check svg{ width: 12px; height: 12px; }

.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.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: 999px;
  font-weight: 950;
  font-size: 14px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease;
}
.btn:not(.btn-primary):hover{
  transform: translateY(-1px);
  border-color: rgba(11,16,32,.20);
  background: rgba(255,255,255,.88);
}

.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{
  filter: brightness(1.09);
  transform: translateY(-1px);
}

.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); }

/* Responsive */
@media (min-width: 720px){
  .card{ grid-column: span 6; padding: 24px; }
  .footer-cta{ padding: 18px 20px; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce){
  .card, .btn{ transition: none; }
}