/* Landingpage 1 */
:root{
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(2, 6, 23, .12);
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);

--accent: #1c355e;
--accent2: #3567a8;
--accentSoft: rgba(53,103,168,.10);

  --radius: 18px;
  --container: 980px;
  --font: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.logo{
  height: 42px;
  width: auto;
}


*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(900px 500px at 10% 0%, rgba(15,118,110,.10), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(22,163,74,.08), transparent 60%),
              var(--bg);
}

img{max-width:100%; display:block}
a{color: inherit}
.link{
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.link:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top:0;
  z-index: 10;
  background: rgba(246,248,251,.80);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 0;
  gap: 1rem;
}
.brand{
  display:flex;
  align-items:center;
  gap: .65rem;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand img{border-radius: 10px}
.header-right{display:flex; align-items:center; gap: .8rem; flex-wrap:wrap}

.hero{
  position: relative;
  padding: 150px 20px 60px;
  text-align: left;
  color: #000000;

  background:
    linear-gradient(to bottom, rgba(255,255,255,0) 60%, #ffffff 100%),
    url("");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-content{
  max-width: 950px;
  margin: 0 auto;
}

.hero h1{
  font-size: 30px;
  margin-bottom: 12px;
}

.hero .subtitle{
  font-size: 18px;
  margin-bottom: 24px;
}
h1{
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 .7rem;
}
.subtitle{
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 55ch;
}
.trust-row{
  display:flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.trust-pill{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem .7rem;
  box-shadow: 0 8px 18px rgba(2,6,23,.05);
  color: var(--muted);
  font-weight: 600;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.funnel{ padding: 1.1rem; }
.funnel-top{ margin-bottom: 1rem; }
.progress{
  height: 10px;
  background: rgba(2,6,23,.06);
  border-radius: 999px;
  overflow:hidden;
}
.progress__bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.progress-meta{
  display:flex;
  justify-content:space-between;
  margin-top: .55rem;
}
.muted{ color: var(--muted); }

.wizard h2{
  font-size: 1.5rem;
  margin: .4rem 0 .35rem;
}
.wizard p{ margin: 0 0 1rem; }

.step{ padding: .2rem 0; }

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}

.option{
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  cursor: pointer;
  transition: all .15s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:700;
}

/* echtes Radio verstecken */
.option input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* hover */
.option:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
}

/* selected state */
.option input[type="radio"]:checked + span{
  color: var(--accent);
}

.option:has(input[type="radio"]:checked){
  border-color: var(--accent);
  background: var(--accentSoft);
  box-shadow: 0 0 0 2px rgba(15,118,110,.15);
}

.field{ margin-top: .8rem; }
label{ display:block; font-weight: 700; margin-bottom: .35rem; }
input, textarea{
  width: 100%;
  font: inherit;
  border: 1px solid rgba(2,6,23,.18);
  border-radius: 14px;
  padding: .85rem .9rem;
  outline: none;
  background: #fff;
}
input:focus, textarea:focus{
  border-color: rgba(15,118,110,.55);
  box-shadow: 0 0 0 4px rgba(15,118,110,.12);
}
.hint{ display:block; margin-top: .35rem; color: var(--muted); font-size: .92rem; }

.checkbox{
  display:flex;
  gap: .6rem;
  align-items:flex-start;
  margin-top: 1rem;
  padding: .85rem;
  border: 1px solid rgba(15,118,110,.22);
  background: var(--accentSoft);
  border-radius: 16px;
}
.checkbox input{ margin-top: .2rem; width: 18px; height: 18px; }

.controls{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 1rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.controls__right{ display:flex; align-items:center; gap: .75rem; flex-wrap:wrap; justify-content:flex-end; }
.error{ color: #b91c1c; font-weight: 700; min-height: 1.2em; }

.btn{
  border: 1px solid rgba(15,118,110,.45);
  background: linear-gradient(180deg, #1c355e, #3567a8);
  border-color: #1c355e;
  color: #fff;
  border-radius: 14px;
  padding: .9rem 1.05rem;
  font-weight: 800;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: .5rem;
  box-shadow: 0 10px 22px rgba(15,118,110,.18);
}
.btn:hover{ filter: brightness(1.03); }
.btn--ghost{
  background: #fff;
  color: var(--accent);
  border-color: rgba(2,6,23,.18);
  box-shadow:none;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.btn--ghost {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--large {
  padding: 16px 24px;
  font-size: 1.05rem;
}
.btn--sm{ padding: .62rem .8rem; border-radius: 12px; font-size: .95rem; }

.summary{
  margin-top: 1.1rem;
  border-top: 1px dashed rgba(2,6,23,.18);
  padding-top: .9rem;
}
.summary h3{ margin: 0 0 .65rem; }
.summary__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem .9rem;
}
.kv{
  padding: .6rem .7rem;
  border: 1px solid rgba(2,6,23,.12);
  border-radius: 14px;
  background: rgba(2,6,23,.02);
}
.kv b{ display:block; font-size: .92rem; color: var(--muted); margin-bottom: .15rem; }
.kv span{ font-weight: 800; }

.fineprint{
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.legal{ margin: 1.2rem 0 2.2rem; padding: 1.1rem; }
.bullets{ margin: .6rem 0 0; color: var(--muted); }
.bullets li{ margin: .25rem 0; }

.site-footer{
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  background: rgba(246,248,251,.8);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 1rem;
  align-items:center;
  flex-wrap:wrap;
}
.footer-links{ display:flex; gap: .9rem; flex-wrap:wrap; }

@media (max-width: 720px){
  .grid-2{ grid-template-columns: 1fr; }
  .summary__grid{ grid-template-columns: 1fr; }
}

/* Income slider component */
.income-field{
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(2,6,23,.12);
  border-radius: 16px;
  background: rgba(2,6,23,.02);
}

.income-field__head{
  display:flex;
  flex-direction:column;
  gap:.25rem;
  margin-bottom: .7rem;
}

.income-field__label{
  font-weight: 800;
  margin: 0;
}

.income-field__hint{
  color: var(--muted);
  font-size: .92rem;
}

.income-field__value{
  display:flex;
  align-items:center;
  gap:.5rem;
  margin-bottom: .8rem;
}

.income-field__input{
  flex: 1;
  font: inherit;
  border: 1px solid rgba(2,6,23,.18);
  border-radius: 14px;
  padding: .85rem .9rem;
  outline: none;
  background: #fff;
  font-weight: 800;
}

.income-field__suffix{
  font-weight: 800;
  color: var(--muted);
}

.income-field__range{
  width: 100%;
  accent-color: var(--accent);
}

.income-field__scale{
  display:flex;
  justify-content:space-between;
  margin-top: .35rem;
  color: var(--muted);
  font-size: .9rem;
}

.income-field__value{
  display:flex;
  align-items:center;
  gap:.5rem;
  margin: .35rem 0 .75rem;
}

.income-field__input{
  flex:1;
  font: inherit;
  border: 1px solid rgba(2,6,23,.18);
  border-radius: 14px;
  padding: .85rem .9rem;
  outline: none;
  background: #fff;
  font-weight: 800;
}

.income-field__suffix{
  font-weight: 800;
  color: var(--muted);
}

.income-field__range{
  width: 100%;
  accent-color: var(--accent);
}

.support{
  padding: 50px 40px;
}

.support-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.support-left h2{
  margin-bottom: 10px;
}

.support-left .btn{
  margin-top: 5px;
}

.support-right{
  text-align: right;
  
}

.support-label{
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 0px;
  margin-top: 5px;
}

.support-phone{
  font-size: 36px;
  color: linear-gradient(180deg, rgba(15,118,110,1), rgba(13,94,88,1));
}

.support-phone a{
  text-decoration: none;
  color: linear-gradient(180deg, rgba(15,118,110,1), rgba(13,94,88,1));
}

/* Vergleich PKV */

.compare-section{
margin:70px 0;
text-align:center;
}

.compare-section h2{
margin-bottom:40px;
}

.compare-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.compare-card{
background:white;
border-radius:18px;
padding:30px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:left;
}

.compare-card h3{
margin-bottom:15px;
}

.compare-card ul{
list-style:none;
padding:0;
margin:0;
}

.compare-card li{
margin-bottom:12px;
font-weight:600;
}

.bad li{
color:#c0392b;
}

.good li{
color:#2563eb;
}


/* Beratungsablauf */

.process-section{
margin:80px 0;
text-align:center;
}

.process-section h2{
margin-bottom:40px;
}

.process-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.process-card{
background:white;
border-radius:18px;
padding:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.step-number{
display:inline-block;
width:40px;
height:40px;
border-radius:50%;
background:var(--accent);
color:white;
font-weight:700;
line-height:40px;
margin-bottom:10px;
}

@media (max-width:900px){

.process-grid{
grid-template-columns:1fr 1fr;
}

}

@media (max-width:720px){

.compare-grid{
grid-template-columns:1fr;
}

}

/* =========================================================
   PKV Vergleich + Ablauf, nah am Referenzbild
========================================================= */

:root{
  --ef-blue-dark: #1c355e;
  --ef-blue: #274b7a;
  --ef-blue-soft: #edf3fb;
  --ef-border: #d7deea;
  --ef-text: #1f2937;
  --ef-muted: #5b6678;
  --ef-red: #d35b4a;
  --ef-green: #6b8f45;
  --ef-card-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

/* globale Breite passt sich deiner container-Struktur an */
.pkv-compare,
.pkv-process{
  margin: 56px 0;
}

.pkv-section-head{
  text-align: center;
  margin-bottom: 28px;
}

.pkv-section-head h2{
  margin: 0;
  color: var(--ef-text);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.2;
  font-weight: 600;
}

.pkv-section-head--line{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.pkv-section-head--line::before,
.pkv-section-head--line::after{
  content: "";
  display: block;
  height: 1px;
  background: #d8dfe9;
  flex: 1 1 120px;
  max-width: 170px;
}

.pkv-section-head--line h2{
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  white-space: nowrap;
}

.pkv-section-head--line h2 strong{
  font-weight: 800;
}

/* Vergleichskarten */
.pkv-compare-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.pkv-compare-card{
  background: #fff;
  border: 1px solid var(--ef-border);
  box-shadow: var(--ef-card-shadow);
  overflow: hidden;
}

.pkv-compare-card__head{
  background: linear-gradient(180deg, var(--ef-blue-dark), var(--ef-blue));
  color: #fff;
  text-align: center;
  padding: 18px 16px 16px;
}

.pkv-compare-card__head h3{
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

.pkv-compare-card__body{
  padding: 26px 26px 24px;
  background: #fff;
}

.pkv-checklist{
  list-style: none;
  margin: 0;
  padding: 0;
}

.pkv-checklist li{
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--ef-text);
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 500;
}

.pkv-checklist li:last-child{
  margin-bottom: 0;
}

.pkv-checklist li::before{
  position: absolute;
  left: 0;
  top: 0.02em;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 800;
}

.pkv-checklist--negative li::before{
  content: "✕";
  color: var(--ef-red);
}

.pkv-checklist--positive li::before{
  content: "✓";
  color: var(--ef-green);
}

/* Ablaufkarten */
.pkv-process{
  margin-top: 64px;
}

.pkv-process-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pkv-process-card{
  position: relative;
  background: #fff;
  border: 1px solid var(--ef-border);
  box-shadow: var(--ef-card-shadow);
  min-height: 158px;
  padding: 34px 16px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkv-process-card__badge{
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid #cfd8e6;
  color: var(--ef-blue-dark);
  font-size: 1.2rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.08);
}

.pkv-process-card h3{
  margin: 0;
  color: var(--ef-text);
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 600;
}

/* Desktop-Finetuning für Screenshot-Nähe */
@media (min-width: 1100px){
  .pkv-compare-card__body{
    min-height: 205px;
  }

  .pkv-process-card{
    min-height: 170px;
  }
}

/* Tablet */
@media (max-width: 980px){
  .pkv-compare-grid{
    grid-template-columns: 1fr;
  }

  .pkv-process-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pkv-section-head--line{
    gap: 10px;
  }

  .pkv-section-head--line h2{
    white-space: normal;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 640px){
  .pkv-compare,
  .pkv-process{
    margin: 42px 0;
  }

  .pkv-compare-card__body{
    padding: 20px 18px;
  }

  .pkv-checklist li{
    font-size: 1.08rem;
    padding-left: 28px;
    margin-bottom: 12px;
  }

  .pkv-process-grid{
    grid-template-columns: 1fr;
  }

  .pkv-process-card{
    min-height: 130px;
    padding: 30px 14px 18px;
  }

  .pkv-process-card h3{
    font-size: 1.1rem;
  }
}

/* Dropdown Styling */
select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Source Sans 3', sans-serif;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;

  /* Pfeil */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 8 9 11 12 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

/* Hover */
select:hover {
  border-color: #999;
}

/* Focus (wenn aktiv) */
select:focus {
  outline: none;
  border-color: #1f5fa9;
  box-shadow: 0 0 0 3px rgba(31,95,169,0.15);
}

/* Label Abstand */
.form-group select {
  margin-top: 6px;
}

button[hidden],
section[hidden],
div[hidden] {
  display: none !important;
}