
:root{
  --primary:#3fa3bb;
  --primary-dark:#358ea3;
  --bg:#eef3f8;
  --text:#22313b;
  --card:#ffffff;
  --border:#dde4ec;
  --radius:14px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

.container{
  max-width:980px;
  margin:auto;
  padding:24px;
}

.hero{
  background:#fff;
  border-top:24px solid var(--primary);
  border-bottom:1px solid #e7e7e7;
  text-align:center;
  padding:20px 0;
}

.logo-camp{
  width:120px;
  height:auto;
}

.subtitle{
  color:#5b6872;
  font-size:1.1rem;
}

.card,
.result{
  background:var(--card);
  border-radius:var(--radius);
  padding:28px;
  margin:24px 0;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

button{
  background:var(--primary);
  color:#22313b;
  border:none;
  border-radius:8px;
  padding:14px 22px;
  font-weight:700;
  cursor:pointer;
  transition:.2s;
}

button:hover{
  background:var(--primary-dark);
}

.progress{
  margin:25px 0;
}

.progress-text{
  font-weight:600;
  margin-bottom:8px;
}

.progress-bar{
  width:100%;
  height:12px;
  background:#dde4ec;
  border-radius:999px;
  overflow:hidden;
}

#progressFill{
  width:0%;
  height:100%;
  background:var(--primary);
  transition:width .3s ease;
}

.step{
  display:none;
}

.step.active{
  display:block;
}

.step label{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px;
  margin:10px 0;
  border:1px solid var(--border);
  border-radius:10px;
  cursor:pointer;
  transition:.2s;
}

.step label:hover{
  border-color:var(--primary);
  background:#f8fcfd;
}

.step input{
  width:auto;
}

.next{
  margin-top:18px;
}

.result{
  border-top:6px solid var(--primary);
}

.result .card{
  background:#f8fbfd;
  border-left:5px solid var(--primary);
  margin:18px 0;
  box-shadow:none;
}

.result h2{
  text-align:center;
  margin-top:0;
}

.site-footer{
  text-align:center;
  padding:35px 20px;
  color:#666;
  border-top:1px solid #e5e7eb;
  margin-top:50px;
  background:#f8f9fb;
}

@media(max-width:768px){
  .container{padding:16px;}
  button{width:100%;}
  .card,.result{padding:20px;}
}



/* Header im Stil des Fair-Use-Rechners */
.brand{
    margin-bottom:25px;
}

.logo-camp{
    width:120px;
    height:auto;
}

.subtitle{
    font-size:20px;
    color:#5b6872;
    margin-top:10px;
}

.powered{

    margin-top:30px;
    text-align:center;
    color:#666;
    font-size:15px;
    line-height:1.5;

}

.logo-tortuga{
    display:block;
    width:140px;
    height:auto;
    margin:8px auto 0;
    opacity:.85;
}

.site-footer{
    margin-top:60px;
    padding:35px 20px;
    background:#f8f9fb;
    border-top:1px solid #e5e7eb;
    text-align:center;
}

.footer-links{
    margin-bottom:18px;
}

.footer-links a{
    color:#3fa3bb;
    text-decoration:none;
    margin:0 14px;
    font-weight:500;
}

.footer-links a:hover{
    text-decoration:underline;
}

.footer-copy{
    color:#666;
    font-size:14px;
    line-height:1.6;
}

.recommendations{
    margin-top:50px;
    padding:35px;
    background:#fff9df;
    border:1px solid #ead777;
    border-radius:14px;
}

.recommendations h2{
    text-align:center;
    margin:0 0 25px;
}

.recommendation-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.recommendation-card{
    background:#fff;
    border:1px solid #dde4ec;
    border-radius:12px;
    padding:24px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.recommendation-card h3{
    margin-top:0;
}

.recommendation-card p{
    line-height:1.6;
    min-height:90px;
}

.promo-button{
    display:inline-block;
    margin-top:12px;
    padding:10px 18px;
    background:#3fa3bb;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
}

.promo-button:hover{
    background:#358ea3;
}

.trust-box{
    margin-top:24px;
    padding:24px 28px;
    background:#e8f7fb;
    border:1px solid #b7e4ef;
    border-left:6px solid #3fa3bb;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.trust-box h3{
    margin:0 0 12px;
    color:#22313b;
    font-size:1.3rem;
}

.trust-box p{
    margin:0 0 10px;
    color:#44525c;
    line-height:1.7;
}

.trust-box p:last-child{
    margin-bottom:0;
}
