
:root {
  --g900: #0f1f4a;
  --g800: #1E3A8A;
  --g700: #2248a8;
  --g600: #2d55c0;
  --g500: #3b6dd4;
  --g400: #5b8de0;
  --gold: #93C5FD;
  --gold-l: #bdd9fe;
  --gold-p: #ddeeff;
  --cream: #EFEFF2;
  --white: #ffffff;
  --gray-50: #f4f4f7;
  --gray-100: #e8e8ec;
  --gray-200: #d0d0d8;
  --gray-400: #8888a0;
  --gray-600: #4a4a60;
  --gray-800: #1a1a2e;
  --red: #b83232;
  --red-bg: #fef5f5;
  --red-border: #f5cccc;
  --green-ok: #1E3A8A;
  --green-bg: #eef3fb;
  --green-border: #c5d5ee;
  --r4: 4px;
  --r8: 8px;
  --r16: 16px;
  --r24: 24px;
  --shadow: 0 4px 24px rgba(30,58,138,0.10);
  --shadow-lg: 0 16px 56px rgba(30,58,138,0.18);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}

a { text-decoration: none; }
img { display: block; }

/* ─── LAYOUT ─── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; }

/* ─── LABEL ─── */
.lbl {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--g600); margin-bottom: 1rem;
}
.lbl::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}

/* ─── HEADINGS ─── */
.h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
.h3 { font-size: 1.4rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem; border-radius: var(--r4);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: all 0.22s; border: none;
  text-decoration: none;
}
.btn-gold {
  display: inline-flex;
  background: #1a3a6b;
  color: white;
  border-radius: 12px;
  padding: 0.9rem 2.25rem;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.22s;
  letter-spacing: 0.01em;
}
.btn-gold:hover { 
  background: #1B5FC1; 
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27,95,193,0.2);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.5);
}
.btn-dark {
  background: var(--g800); color: var(--white);
}
.btn-dark:hover {
  background: var(--g700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ─── TOPBAR ─── */
#topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--g900);
  border-bottom: 1px solid rgba(147,197,253,0.12);
  height: 36px;
  display: flex; align-items: center;
}
.topbar-in {
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 0 2rem;
}
.topbar-items {
  display: flex; align-items: center;
  gap: 1rem; flex-wrap: nowrap;
}
.topbar-item {
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.topbar-strong {
  font-size: 0.78rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.topbar-light {
  font-size: 0.78rem; font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.topbar-stars {
  font-size: 0.72rem;
  color: #f5c842;
  letter-spacing: 1px;
}
.topbar-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.9rem;
  padding: 0 0.1rem;
}

/* ─── NAV ─── */
#nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 200;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid rgba(30,58,138,0.06);
  display: flex; align-items: center;
  transition: all 0.3s ease;
}
.nav-in {
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--g800);
}
.nav-logo-badge {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--g800); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}
.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: var(--gray-600);
  font-size: 0.875rem; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--g800); }
.nav-cta {
  background: var(--g800) !important; color: var(--white) !important;
  padding: 0.45rem 1.25rem; border-radius: var(--r4);
  font-weight: 600 !important; font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--g700) !important; }

/* ─── HERO ─── */
#hero {
  min-height: auto;
  background: #ffffff;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 130px;
  padding-bottom: 30px;
}

/* Grid pattern – feine blaue Linien wie im Bild */
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(147,197,253,0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,197,253,0.45) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}

/* Fade: unten ausblendet das Muster ins Weisse */
.hero-grid-fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,0.6) 65%,
    rgba(255,255,255,0.92) 80%,
    #ffffff 100%
  );
}

/* Subtiler Farbfleck links oben */
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(147,197,253,0.18) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
/* Subtiler Farbfleck rechts unten */
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(30,58,138,0.07) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero-in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 460px;
  gap: 5rem; align-items: center;
  padding: 3.5rem 2rem 3.5rem;
  max-width: 1180px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(30,58,138,0.2);
  background: rgba(30,58,138,0.06);
  color: var(--g700);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: var(--g800); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.4;transform:scale(1.4)}
}
.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--g900); margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-title em { color: var(--g800); font-style: italic; }
.hero-sub {
  color: var(--gray-600);
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.75; margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero-checks {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.7rem; margin-bottom: 2.75rem;
}
.hero-checks li {
  display: flex; align-items: center; gap: 10px;
  color: var(--gray-800); font-size: 0.95rem;
}
.hero-checks li::before {
  content: ''; width: 8px; height: 8px; background: var(--g800); border-radius: 50%;
  flex-shrink: 0;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0; }

/* ─── LOGO TICKER ─── */
#logo-ticker {
  background: var(--white);
  padding: 1.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-100);
}
.ticker-label {
  text-align: center;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 1.25rem;
}
.ticker-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ticker-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-logo {
  padding: 0.6rem 3rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem; font-weight: 800;
  color: #b0b4c4;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-right: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.ticker-logo:hover { color: var(--g800); }

/* ─── SCHMERZ ─── */

/* Hero Form Card */
.hero-card {
  background: #ffffff;
  border: 1px solid rgba(30,58,138,0.14);
  border-radius: var(--r16);
  padding: 2.25rem;
  box-shadow: 0 8px 40px rgba(30,58,138,0.12);
}
.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--g800);
  margin-bottom: 0.4rem;
}
.hero-card-sub {
  font-size: 0.82rem; color: var(--gray-400);
  margin-bottom: 1.75rem;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label {
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--gray-600);
}
.fg input, .fg select {
  background: var(--gray-50);
  border: 1px solid rgba(30,58,138,0.15);
  border-radius: var(--r4);
  padding: 0.72rem 1rem;
  color: var(--gray-800);
  font-family: 'Outfit', sans-serif; font-size: 0.88rem;
  outline: none; transition: border-color 0.2s;
  width: 100%;
}
.fg input::placeholder { color: var(--gray-400); }
.fg select option { background: #fff; color: var(--gray-800); }
.fg input:focus, .fg select:focus { border-color: var(--g800); background: #fff; }
.form-gap { display: flex; flex-direction: column; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note {
  text-align: center; font-size: 0.75rem;
  color: var(--gray-400); margin-top: 0.75rem;
}

/* ─── TRUST BAR + BENEFITS ─── */
#hero-bottom { background: var(--white); }

.trust-bar {
  border-bottom: 1px solid var(--gray-100);
  padding: 1.25rem 0;
  background: var(--white);
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 0.85rem;
  flex: 1; min-width: 160px;
}
.trust-bar-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  opacity: 0.8;
}
.trust-bar-ico svg { width: 100%; height: 100%; }
.trust-bar-text {
  font-size: 0.82rem; color: var(--gray-600);
  line-height: 1.4;
}
.trust-bar-text strong { color: var(--gray-800); display: block; }
.trust-bar-divider {
  width: 1px; height: 36px;
  background: var(--gray-100); flex-shrink: 0;
}

.benefits-section {
  padding: 3.5rem 0;
  background: var(--white);
}
.benefits-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--g800);
  text-align: center;
  margin-bottom: 3.5rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid rgba(30,58,138,0.15);
  border-radius: var(--r8);
  padding: 1.75rem 1.25rem 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.benefit-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r8);
  background: linear-gradient(135deg, rgba(147,197,253,0.08), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.benefit-card:hover {
  border-color: var(--g800);
  box-shadow: 0 8px 28px rgba(30,58,138,0.12);
  transform: translateY(-3px);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-check {
  width: 48px; height: 48px; flex-shrink: 0;
}
.benefit-check svg { width: 100%; height: 100%; }
.benefit-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: var(--g800);
  line-height: 1.35;
}

/* ─── SCHMERZ ─── */
#schmerz { background: var(--cream); }
.schmerz-lead {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-bottom: 4rem;
}
.schmerz-lead-right {
  padding-top: 0.5rem;
}
.pain-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic;
  color: var(--g800); line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem; margin: 2rem 0;
}
.schmerz-lead-right p {
  color: var(--gray-600); line-height: 1.75;
  font-size: 0.975rem;
}
.pain-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(30,58,138,0.06);
  border-radius: var(--r16); padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g600), var(--gold));
  opacity: 0; transition: opacity 0.25s;
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  width: 52px; height: 52px;
  background: #eef3fb;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--g800);
}
.pain-icon svg { width: 24px; height: 24px; stroke: var(--g800); }
.pain-card h3 {
  font-size: 1.05rem; color: var(--g800);
  margin-bottom: 0.65rem;
}
.pain-card p {
  font-size: 0.875rem; color: var(--gray-600); line-height: 1.65;
}
.pain-banner {
  background: var(--g800);
  border-radius: var(--r16);
  padding: 3rem 3.5rem;
  margin-top: 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
}
.pain-banner-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--white);
  line-height: 1.4; flex: 1;
}
.pain-banner .btn-gold {
  background: #eef3fb;
  color: #1a3a6b;
  white-space: nowrap;
}
.pain-banner .btn-gold:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.pain-banner-q em { color: var(--gold-l); font-style: italic; }

/* ─── OUTGROUPING ─── */
#out { background: var(--white); }
.out-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: stretch; margin-top: 3.5rem;
}
.out-probs { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.out-prob {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  border-radius: var(--r8); padding: 1.25rem;
}
.out-prob-ico { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.out-prob-ico svg { display: block; stroke: var(--red); }
.out-prob h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  color: var(--red); margin-bottom: 0.3rem;
}
.out-prob p { font-size: 0.84rem; color: var(--gray-600); line-height: 1.6; }

.out-box {
  background: linear-gradient(145deg, var(--g800), var(--g700));
  border-radius: var(--r16); padding: 3rem;
  height: 100%;
  box-shadow: 0 8px 32px rgba(30,58,138,0.25);
  display: flex; flex-direction: column;
}
.out-box-lbl {
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 1.25rem;
}
.out-box blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic;
  line-height: 1.5; color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem; margin-bottom: 1.75rem;
}
.out-box p {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 1.25rem;
}
.out-box p:last-of-type { margin-bottom: 1.75rem; }

/* ─── DECISION ─── */
#decision { background: var(--cream); }
.decision-lead { max-width: 700px; margin-bottom: 3.5rem; }
.decision-lead p { color: var(--gray-600); font-size: 1rem; line-height: 1.7; margin-top: 1rem; }

.dvs {
  display: grid; grid-template-columns: 1fr 72px 1fr;
  align-items: stretch; gap: 0;
}
.dcol {
  background: var(--white);
  border-radius: var(--r16); overflow: hidden;
  border: 1.5px solid var(--gray-100);
}
.dcol.bad { border-color: var(--red-border); }
.dcol.good { border-color: var(--green-border); }

.dhead {
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 0.85rem;
}
.dcol.bad .dhead { background: #fef2f2; }
.dcol.good .dhead { background: var(--green-bg); }
.dhead-ico { display: flex; align-items: center; }
.dhead-ico svg { display: block; }
.dcol.bad .dhead-ico svg { stroke: var(--red); }
.dcol.good .dhead-ico svg { stroke: var(--green-ok); }
.dhead h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 600;
}
.dcol.bad .dhead h3 { color: var(--red); }
.dcol.good .dhead h3 { color: var(--green-ok); }
.dhead p { font-size: 0.78rem; margin-top: 2px; }
.dcol.bad .dhead p { color: #e07070; }
.dcol.good .dhead p { color: #4caf80; }

.ditems { padding: 0 2rem 2rem; }
.ditem {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--gray-50);
  display: flex; align-items: flex-start; gap: 0.85rem;
}
.ditem:last-child { border-bottom: none; }
.ditem-ico { font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.ditem-txt h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 0.2rem;
}
.dcol.bad .ditem-txt h4 { color: #7b1f1f; }
.dcol.good .ditem-txt h4 { color: #1a4d2a; }
.ditem-txt p { font-size: 0.81rem; color: var(--gray-600); line-height: 1.55; }
.ditem-txt strong { color: var(--g800); font-weight: 600; }

.dvs-mid {
  display: flex; align-items: center; justify-content: center;
}
.vs-circle {
  width: 44px; height: 44px;
  background: var(--g800); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
}

.decision-bar {
  background: var(--g800); border-radius: var(--r16);
  padding: 2.5rem 3rem;
  margin-top: 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.decision-bar-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--white);
}
.decision-bar-txt span { color: var(--gold-l); }

/* ─── EDUKATION ─── */
#edu { background: var(--white); }
.edu-lead { max-width: 680px; margin-bottom: 3.5rem; }
.edu-lead p { color: var(--gray-600); font-size: 1rem; margin-top: 1rem; line-height: 1.7; }

.tabs { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; border-bottom: 1.5px solid var(--gray-100); }
.tab-b {
  padding: 0.7rem 1.5rem;
  background: none; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  font-family: 'Outfit', sans-serif; font-size: 0.875rem; font-weight: 500;
  color: var(--gray-400); cursor: pointer; transition: all 0.2s;
}
.tab-b.on { color: var(--g800); border-bottom-color: var(--gold); }
.tab-p { display: none; }
.tab-p.on { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.edu-box {
  background: var(--white); border-radius: var(--r16); padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(30,58,138,0.06);
}
.edu-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--g800);
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.edu-row {
  display: flex; justify-content: space-between; align-items: start;
  padding: 0.8rem 0; border-bottom: 1px solid var(--gray-100); gap: 1rem;
}
.edu-row:last-child { border-bottom: none; }
.edu-rl { font-size: 0.85rem; color: var(--gray-600); flex: 1; }
.edu-rv { font-size: 0.85rem; font-weight: 600; color: var(--g800); text-align: right; flex: 1; }

.fehler-list { display: flex; flex-direction: column; gap: 1rem; grid-column: 1/-1; }
.fehler-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--white); border-radius: var(--r8); padding: 1.5rem;
  border-left: 3px solid var(--g800);
  box-shadow: 0 2px 10px rgba(30,58,138,0.06);
  border-top: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.f-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0; line-height: 1.3;
}
.f-txt h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 600; color: var(--g800); margin-bottom: 0.3rem;
}
.f-txt p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }

/* ─── VERSICHERUNG vs BANK ─── */
#vb { background: var(--g900); }
#vb .lbl { color: var(--gold-l); }
#vb .h2 { color: var(--white); }
.vb-sub { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 680px; line-height: 1.7; margin-top: 1rem; margin-bottom: 3.5rem; }

.vb-scroll {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r16);
}
@media (max-width: 768px) {
  .vb-table { min-width: 600px; }
}

.vb-table {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r16); overflow: hidden; margin-bottom: 2.5rem;
}
.vb-thead {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  background: rgba(147,197,253,0.12);
  border-bottom: 1px solid rgba(147,197,253,0.15);
}
.vb-th {
  padding: 1.15rem 1.5rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.vb-th:first-child { color: rgba(255,255,255,0.45); }
.vb-th.bank-h { color: rgba(255,255,255,0.65); }
.vb-th.vers-h { color: var(--gold-l); }
.vb-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.vb-row:last-child { border-bottom: none; }
.vb-row:hover { background: rgba(255,255,255,0.025); }
.vb-cell {
  padding: 1.1rem 1.5rem;
  font-size: 0.88rem; display: flex; align-items: center; gap: 7px;
}
.vb-cell:first-child { color: rgba(255,255,255,0.7); }
.vb-bank { color: rgba(255,255,255,0.45); font-size: 0.84rem; }
.vb-vers { color: var(--gold-l); font-size: 0.84rem; font-weight: 500; }
.ok { color: #5fcc85; }
.no { color: #e57373; }
.par { color: #ffc87a; }

.vb-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.vb-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(147,197,253,0.18);
  border-radius: var(--r16); padding: 2rem;
}
.vb-card-ico { margin-bottom: 1rem; }
.vb-card-ico svg { display: block; stroke: rgba(255,255,255,0.85); }
.vb-card h3 {
  font-size: 1.15rem; color: var(--white); margin-bottom: 0.75rem;
}

/* RECHNER GRID */
.rechner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .rechner-grid { grid-template-columns: 1fr; gap: 4rem; }
}

.vb-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

.vb-note {
  margin-top: 2rem; padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r8);
  color: rgba(255,255,255,0.4); font-size: 0.8rem; line-height: 1.65;
}

/* Buttons in dark sections use light accent */
#vb .btn-gold,
.out-box .btn-gold,
.decision-bar .btn-gold,
.pain-banner .btn-gold {
  background: var(--gold);
  color: var(--g900);
}
#vb .btn-gold:hover,
.out-box .btn-gold:hover,
.decision-bar .btn-gold:hover,
.pain-banner .btn-gold:hover {
  background: var(--gold-l);
  color: var(--g900);
  box-shadow: 0 8px 24px rgba(147,197,253,0.3);
}

/* ─── PROZESS ─── */
#prozess { background: var(--cream); }
.prozess-lead { max-width: 640px; margin-bottom: 4.5rem; }
.prozess-lead p { color: var(--gray-600); font-size: 1rem; margin-top: 1rem; line-height: 1.7; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 44px; left: 14%; right: 14%;
  height: 1px; background: linear-gradient(90deg, var(--gold), var(--g400));
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 88px; height: 88px;
  background: var(--g800);
  border: 5px solid var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--gold-l);
  box-shadow: 0 0 0 10px rgba(147,197,253,0.1);
}
.step h3 { font-size: 1.2rem; color: var(--g800); margin-bottom: 0.75rem; }
.step p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

.stats-row {
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0; background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r16); margin-top: 4rem; overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,58,138,0.08);
}
.stat-div { background: var(--gray-100); }
.stat-item { padding: 2.5rem; text-align: center; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--g800);
  line-height: 1;
}
.stat-n span { color: var(--gold); }
.stat-l { font-size: 0.82rem; color: var(--gray-400); margin-top: 0.5rem; }

.standpoints {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3.5rem;
}
.sp-col { border-radius: var(--r16); padding: 2rem; }
.sp-col.yes { background: #eef3fb; border: 1px solid #c5d5ee; }
.sp-col.no  { background: #fef9f0; border: 1px solid #fde8b8; }
.sp-col h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.sp-col.yes h3 { color: var(--g800); }
.sp-col.no  h3 { color: #7a4f10; }
.sp-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.sp-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem; color: var(--gray-600); line-height: 1.55;
}
.sp-col.yes .sp-list li::before { content: '✓'; color: #1E3A8A; font-weight: 700; flex-shrink: 0; }
.sp-col.no  .sp-list li::before { content: '✗'; color: #e67e22; font-weight: 700; flex-shrink: 0; }

/* ─── CASES ─── */
#cases { background: var(--white); }
.cases-lead { max-width: 680px; margin-bottom: 3.5rem; }
.cases-lead p { color: var(--gray-600); font-size: 1rem; margin-top: 1rem; line-height: 1.7; }

.cases-g3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.cases-g2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1.5rem;
}
.case-card {
  border-radius: var(--r16);
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(30,58,138,0.08);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.case-head {
  background: linear-gradient(145deg, var(--g800), var(--g700));
  padding: 1.75rem;
}
.case-head-row {
  display: flex; align-items: center; gap: 1.25rem;
}
.case-avi {
  width: 52px; height: 52px;
  background: rgba(147,197,253,0.15);
  border: 2px solid rgba(147,197,253,0.3);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.78rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.05em; flex-shrink: 0;
}
.case-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--white);
}
.case-meta { font-size: 0.78rem; color: var(--gold-l); margin-top: 2px; }

.case-body { padding: 1.75rem; background: var(--white); }
.case-sec { margin-bottom: 1.1rem; }
.case-sec-lbl {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 0.35rem;
}
.case-sec p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }

.case-result {
  background: #eef3fb;
  border: 1px solid #c5d5ee;
  border-radius: var(--r8); padding: 1rem 1.25rem;
  margin-bottom: 1.1rem;
}
.case-result-lbl {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--g800); margin-bottom: 0.4rem; font-weight: 700; letter-spacing: 0.08em;
}
.case-result-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--g800); line-height: 1;
}
.case-result-s { font-size: 0.78rem; color: var(--g600); margin-top: 0.25rem; }

.case-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.case-quote { font-size: 0.82rem; color: var(--gray-600); font-style: italic; margin-top: 0.35rem; line-height: 1.55; }

/* ─── ABOUT ─── */
#about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-txt p { color: var(--gray-600); font-size: 0.975rem; line-height: 1.75; margin-bottom: 1.25rem; }
.about-vals {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.av {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r8); padding: 1.25rem;
}
.av-ico { margin-bottom: 0.5rem; }
.av-ico svg { display: block; }
.av h4 { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--g800); margin-bottom: 0.2rem; }
.av p { font-size: 0.78rem; color: var(--gray-400); line-height: 1.5; }

.about-card {
  background: linear-gradient(145deg, var(--g800), var(--g900));
  border-radius: var(--r24); padding: 3rem;
  box-shadow: 0 12px 40px rgba(30,58,138,0.3);
}
.about-card-lbl {
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 1.25rem;
}
.about-mission {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; color: var(--white);
  line-height: 1.4; margin-bottom: 2.5rem;
}
.about-mission em { color: var(--gold-l); font-style: italic; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-stats > div {
  display: flex; flex-direction: column; justify-content: flex-end;
}
.as-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold-l);
  line-height: 1;
}
.as-l { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ─── FAQ ─── */
#faq { background: var(--white); }
.faq-lead { max-width: 640px; margin-bottom: 3.5rem; }
.faq-lead p { color: var(--gray-600); font-size: 1rem; margin-top: 1rem; line-height: 1.7; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.fq {
  border: 1px solid var(--gray-100); border-radius: var(--r8); overflow: hidden;
  box-shadow: 0 2px 10px rgba(30,58,138,0.05);
}
.fq-q {
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; background: var(--white); transition: background 0.15s;
}
.fq-q:hover { background: var(--cream); }
.fq-qt {
  font-size: 0.875rem; font-weight: 600; color: var(--g800); line-height: 1.45;
}
.fq-tog {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--g800); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: transform 0.2s, background 0.2s;
}
.fq.on .fq-tog { transform: rotate(45deg); background: var(--gold); color: var(--g900); }
.fq-a { display: none; padding: 0 1.5rem 1.25rem; }
.fq.on .fq-a { display: block; }
.fq-a p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; }

/* ─── FINAL CTA ─── */
#cta {
  background: var(--cream);
  padding: 9rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,85,192,0.08), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-in { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  color: var(--g700);
  padding: 0.4rem 1.1rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--g900); margin-bottom: 1.25rem;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub {
  color: var(--gray-600); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 3rem;
}
.cta-form-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  border-radius: var(--r16); padding: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.cta-badges {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.ctab {
  display: flex; align-items: center; gap: 7px;
  color: var(--gray-600); font-size: 0.82rem; font-weight: 500;
}
.ctab-ico { color: var(--gold); }

/* ─── FOOTER ─── */
/* ─── FOOTER ─── */
footer {
  background: #07102b;
  padding: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.25); font-size: 0.78rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer a { color: rgba(255,255,255,0.4); }
footer a:hover { color: var(--gold-l); }

/* ─── WIZARD ─── */
#wizard, #cta-wizard { min-height: 320px; }

.wiz-step { animation: wizFade 0.3s ease; }
@keyframes wizFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.wiz-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--g800); text-align: center;
  margin-bottom: 0.4rem;
}
.wiz-sub {
  font-size: 0.9rem; color: var(--g700);
  text-align: center; margin-bottom: 1.6rem;
  font-weight: 500;
}

.wiz-choices {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 12px;
}
.wiz-choices-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wiz-choice {
  background: #1a3a6b;
  border: 2.5px solid transparent;
  border-radius: 14px;
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 100px;
  color: white;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(26,58,107,0.12);
}
.wiz-choice:hover {
  background: #142d54;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26,58,107,0.25);
}
.wiz-choice.selected {
  background: #eef3fb;
  border-color: #1a3a6b;
  color: #1a3a6b;
  box-shadow: none;
}

.wiz-ico {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wiz-ico svg {
  width: 48px;
  height: 48px;
  stroke: white;
  transition: stroke 0.15s;
  fill: none;
}
.wiz-choice.selected .wiz-ico svg {
  stroke: #1a3a6b;
}

.wiz-choice-lbl {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  color: inherit;
}

.wiz-choice-sm { padding: 18px 12px 16px; }
.wiz-choice-sm .wiz-ico { width: 40px; height: 40px; }
.wiz-choice-sm .wiz-ico svg { width: 40px; height: 40px; }

.wiz-age-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 12px;
}
.wiz-age-btn {
  background: var(--gray-50);
  border: 1.5px solid rgba(26,58,107,0.12);
  border-radius: 12px;
  padding: 16px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--g800);
  cursor: pointer;
  transition: all 0.15s;
}
.wiz-age-btn:hover {
  background: #eef3fb;
  border-color: #1a3a6b;
}
.wiz-age-btn.selected {
  background: #eef3fb;
  border-color: #1a3a6b;
  color: #1a3a6b;
}

.wiz-back {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.5rem;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  display: block;
  width: 100%;
  text-align: left;
}
.wiz-back:hover { color: var(--g800); }

.wiz-progress {
  height: 4px; background: var(--gray-100);
  border-radius: 4px; margin-bottom: 1.5rem;
  overflow: hidden;
}
.wiz-progress-bar {
  height: 100%; background: var(--g800);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.wiz-done { text-align: center; padding: 1.5rem 0; }
.wiz-done-ico {
  width: 60px;
  height: 60px;
  background: #eaf0fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.wiz-step .btn-gold { width: 100%; margin: 1.5rem 0 0.5rem; }

/* ─── FORM ─── */
.form-gap { display: flex; flex-direction: column; gap: 0; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.fg label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: #1a3a6b; text-transform: uppercase; }
.fg input, .fg select {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--r8); font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; color: var(--g800); transition: all 0.2s;
}
.fg input:focus, .fg select:focus {
  outline: none; border-color: var(--g800); background: var(--white);
  box-shadow: 0 0 0 4px rgba(30,58,107,0.06);
}
.fg input::placeholder { color: var(--gray-300); }

.form-note { font-size: 0.75rem; color: var(--gray-400); text-align: center; margin-top: 1rem; }

.fi { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fi.v { opacity: 1; transform: none; }
.fi.v { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  .pain-grid{grid-template-columns:1fr 1fr}
  .cases-g3{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-links{display:none}
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 10px;
    z-index: 3000;
  }
  .nav-burger span {
    display: block; width: 25px; height: 2px;
    background: var(--g800); transition: 0.3s;
  }
  .nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links.active {
    display: flex !important; flex-direction: column;
    justify-content: center; align-items: center;
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #ffffff !important; padding: 2rem;
    gap: 2.5rem; text-align: center;
    z-index: 2500; list-style: none; margin: 0;
    animation: fadeIn 0.3s ease;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .nav-links.active li { margin: 0; padding: 0; width: 100%; }
  .nav-links.active li a { 
    font-size: 1.75rem; font-weight: 700; color: var(--g800); 
    text-decoration: none; display: block; padding: 1rem;
    width: 100%;
  }
  body.menu-open { overflow: hidden; }

  #topbar { display: none; }
  #nav { top: 0; }
  #hero { padding-top: 90px; }
  .hero-in{grid-template-columns:1fr}
  .schmerz-lead,.out-grid,.dvs,.tab-p.on,
  .vb-cards,.steps,.about-grid,.standpoints,
  .faq-grid,.cases-g3,.cases-g2{grid-template-columns:1fr}
  .dvs-mid{display:none}
  .steps::before{display:none}
  .stats-row{grid-template-columns:1fr}
  .stat-div{display:none}
  .pain-grid{grid-template-columns:1fr}
  .pain-banner{flex-direction:column}
  .decision-bar{flex-direction:column;text-align:center}
  .frow{grid-template-columns:1fr}
  section{padding:4.5rem 0}
  .hero-in{padding:3.5rem 1.5rem}
  .trust-bar-divider{display:none}
  .trust-bar-inner{gap:1.25rem}
  .trust-bar-item{min-width:140px}
  .benefits-grid{grid-template-columns:1fr 1fr}
}



