:root{
  --navy:#25356a;
  --navy2:#1f2d58;
  --green:#38bdf8;
  --bg:#f2f3f5;
  --card:#ffffff;
  --border:#e6e7ea;
  --text:#1f2937;
  --muted:#6b7280;
  --blue:#2b6cff;
  --shadow: 0 12px 30px rgba(16,24,40,.08);
  --radius: 14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:var(--bg);
}

/* NAVBAR */
.nav{
  background:var(--navy);
  color:#fff;
  position:sticky;
  top:0;
  z-index:100;
}
.nav__inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:18px;
}
.brand{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:22px;
  letter-spacing:.2px;
  white-space:nowrap;
}
.brand__dot{color:var(--green)}
.nav__links{
  display:flex;
  gap:18px;
  align-items:center;
  margin-left:16px;
  flex:1;
}
.nav__link{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  padding:10px 6px;
  border-bottom:2px solid transparent;
}
.navMobile .nav__link {
    font-size: 14px;
}
.nav__link:hover{color:#fff}
.nav__link.is-active{
  border-bottom-color:var(--green);
}
.nav__more{opacity:.9}


.nav__burger{
  display:none;
  border:none;
  background:transparent;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* Mobile nav */
.navMobile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px 12px 18px;

    overflow-x: auto;   /* horizontal scroll */
    overflow-y: hidden;

    white-space: nowrap;  /* ❗ alles bleibt in einer Zeile */
    -webkit-overflow-scrolling: touch;
}
.navMobile::-webkit-scrollbar {
    display: none;
}
.navMobile {
    scrollbar-width: none;
}

.navMobile__link{
  display:block;
  padding:10px 12px;
  margin-top:8px;
  border-radius:12px;
  text-decoration:none;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:600;
  font-size:14px;
}
.navMobile__link.is-active{
  outline:2px solid rgba(25,229,141,.45);
}

/* LAYOUT */
.page{
  max-width:1200px;
  margin:0 auto;
  padding:22px 18px 40px;
}
.infoSteps {
    margin-top: 50px;
}
/* HERO */
.hero{
  padding:44px 0 18px;
}
.hero__inner{
  text-align:center;
}
.hero__title{
  margin:0;
  font-size:44px;
  letter-spacing:-.6px;
  color:var(--navy2);
}
.hero__subtitle{
  margin:12px 0 0 0;
  color:var(--muted);
  font-size:15px;
}

.searchWrap{
  max-width:640px;
  margin:26px auto 0;
  position:relative;
}

.searchBar{
  display:flex;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  border-radius:999px;
  overflow:hidden;
}
.searchBar__clear{
  border:none;
  background:transparent;
  font-size:22px;
  width:46px;
  height:46px;
  cursor:pointer;
  color:rgba(0,0,0,.35);
}
.searchBar__input{
  border:none;
  outline:none;
  flex:1;
  padding:14px 10px;
  font-size:16px;
}
.searchBar__btn{
  border:none;
  background:var(--blue);
  color:#fff;
  width:52px;
  height:52px;
  border-radius:50%;
  margin:6px;
  cursor:pointer;
  font-size:18px;
}

.suggestions{
  margin-top:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  overflow:hidden;
  text-align:left;
}
.suggestion{
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  border-bottom:1px solid #f0f1f3;
}
.suggestion:hover{background:#f7f8fb}
.suggestion:last-child{border-bottom:none}
.suggestion__name{
  font-weight:700;
  color:#111827;
}
.suggestion__meta{
  display:flex;
  gap:12px;
  align-items:center;
  color:var(--muted);
  font-size:12px;
}
.suggestion__meta b{color:#111827}

.offerVendor .offerLogo {
    height: 28px;
    width: 100px;
    object-fit: contain;
}
/* Tipps zum Verkauf */
.infoBox {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.infoBox h2 {
  margin: 0 0 16px 0;
  font-size: 20px;
  color: var(--navy2);
}

/* Liste */
.tipList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tipList li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  line-height: 1.5;
  color: #111827;
  font-size: 15px;
}

/* grünes Häkchen */
.tipList li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #047857;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbf7d0;
}

/* Inline-Links */
.inlineLink {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
}

.inlineLink:hover {
  text-decoration: underline;
}

/* letzter Punkt ohne Abstand */
.tipList li:last-child {
  margin-bottom: 0;
}


.offerVendor {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offerLogo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
}

.offerRow.is-best .offerLogo {
  filter: none;
  opacity: 1;
}


/* Breadcrumbs */
.breadcrumbs{
  color:var(--muted);
  font-size:13px;
  display:flex;
  gap:8px;
  align-items:center;
  margin:10px 0 16px;
}
.breadcrumbs a{
  color:var(--muted);
  text-decoration:none;
}
.breadcrumbs a:hover{text-decoration:underline}
.breadcrumbs strong{color:var(--navy2)}

/* PRODUCT */
.product{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:28px;
  align-items:start;
}
.phoneCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px;
}
.phoneCard__img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

.product__title{
  margin:0;
  color:var(--navy2);
  font-size:40px;
  letter-spacing:-.6px;
}
.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 18px;
}
.pill{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
}
.pill--gold{background:#fff7ed; border-color:#fed7aa}
.pill--green{background:#ecfdf5; border-color:#bbf7d0}
.pill--blue{background:#eff6ff; border-color:#bfdbfe}
.infoDot{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  font-size:12px;
  border-radius:50%;
  background:#eef2ff;
  color:#1d4ed8;
  margin-left:6px;
}

.optionGrid{
  display:grid;
  gap:14px;
}
.box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:14px;
}
.box__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.box h2{
  margin:0;
  font-size:18px;
  color:var(--navy2);
}
.box__action{
  border:none;
  background:#eef2ff;
  color:#1d4ed8;
  font-weight:700;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
}
.box__action:hover{filter:brightness(.98)}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  border:1px solid var(--border);
  background:#fff;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  font-size:13px;
  color:#111827;
  transition:background .12s, border-color .12s, color .12s;
}
.chip:hover{background:#f7f8fb}
.chip.is-active{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}

.offersWrap{
  margin-top:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:14px;
}
.offersHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}
.offersHead h2{
  margin:0;
  color:var(--navy2);
}
.offersHead p{
  margin:6px 0 0 0;
  color:var(--muted);
  font-size:13px;
}
.btnLink{
  border:none;
  background:transparent;
  color:#1d4ed8;
  font-weight:800;
  cursor:pointer;
  padding:8px 10px;
  border-radius:12px;
}
.btnLink:hover{background:#eef2ff}

.offersList{
  border-top:1px solid #f0f1f3;
  margin-top:10px;
}
.offerRow{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:14px;
  align-items:center;
  padding:14px 10px;
  border-bottom:1px solid #f0f1f3;
}
.offerRow:last-child{border-bottom:none}
.offerVendor{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.offerVendor__name{
  font-weight:900;
  letter-spacing:.2px;
}
.offerVendor__hint{
  font-size:12px;
  color:var(--muted);
}
.offerPrice{
  font-size:34px;
  font-weight:950;
  letter-spacing:-.6px;
  color:var(--navy2);
}
.offerCTA{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  border:1px solid #dbeafe;
  background:#2563eb;
  color:#fff;
  white-space:nowrap;
}
.offerCTA:hover{filter:brightness(.98)}
.offerCTA--ghost{
  background:#fff;
  color:#2563eb;
  border-color:#bfdbfe;
}

/* Best highlight */
.offerRow.is-best{
  background:#f7fffb;
  border-radius:12px;
  outline:2px solid rgba(25,229,141,.35);
  margin:10px 0;
}
.bestTag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:900;
  color:#047857;
  background:#ecfdf5;
  border:1px solid #bbf7d0;
  padding:6px 10px;
  border-radius:999px;
  width:max-content;
}

/* ================================
   FOOTER
================================ */

.site-footer {
  background: var(--navy);;
  color: #cbd5f5;
  padding: 70px 24px 30px;
  margin-top: 120px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-dot {
  color: #38bdf8;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

/* Spalten */
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #38bdf8;
}

/* Checks */
.footer-checks li {
  color: #cbd5f5;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-sep {
  margin: 0 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .site-footer {
    padding-top: 50px;
  }
}


/* RESPONSIVE */
@media (max-width: 980px){
  .nav__links{display:none}
  .nav__searchMini{display:none}
  .nav__burger{display:block}
  .hero__title{font-size:36px}
  .product{grid-template-columns:1fr}
  .offerPrice{font-size:28px}
}
@media (max-width: 640px){
  .hero__title{font-size:30px}
  .infoGrid{grid-template-columns:1fr}
  .searchBar__btn{width:48px;height:48px;margin:6px}
  .offerRow{grid-template-columns:1fr auto}
  .offerCTA{grid-column:1 / -1; justify-self:stretch}
}


.steps-highlight {
  padding: 50px 24px;
  margin-top: 50px;
  border-top: 1px solid #e5e7eb;
}

.steps-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #0f172a;
}

.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px 40px;
  position: relative;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.step-number {
  position: absolute;
  top: -18px;
  right: 22px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0ea5c6, #2563eb);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
}

.step-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}




.logo-slider-section {
  overflow: hidden;
}

.partner-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
}

.logo-slider {
  position: relative;
  width: 100%;
  padding: 10px;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 15s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  width: 200px;
  height: 80px;
  margin: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.logo-item img {
  max-height: 36px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.25s ease;
}

.logo-item:hover {
  transform: translateY(-4px);
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .logo-item {
    width: 160px;
    height: 70px;
  }

  .logo-item img {
    max-height: 30px;
  }
}

/* ================================
   SO GEHTS – ANLEITUNG
================================ */

.hero--small {
  padding: 80px 24px 70px;
}

.hero--small .hero__title {
  font-size: 38px;
}

.hero--small .hero__subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  opacity: 0.9;
}


/* Einzelner Schritt */
.step-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}

.step-detail:last-child {
  border-bottom: none;
}

/* Icon links */
.step-detail__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0ea5c6, #2563eb);
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

/* Textbereich */
.step-detail__content h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0f172a;
}

.step-detail__content p {
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 14px;
  max-width: 800px;
}

/* Listen */
.step-list {
  margin: 14px 0 18px 20px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.step-list li {
  margin-bottom: 8px;
}

/* Hinweisbox */
.hint {
  margin-top: 10px;
  padding: 14px 16px;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
}

/* Responsive */
@media (max-width: 768px) {
  .step-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-detail__icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .step-detail__content h2 {
    font-size: 20px;
  }
}




/* ================================
   PORTALE IM VERGLEICH
================================ */

.compare-intro {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}

/* Tabelle */
.compare-table-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.compare-table-section h2 {
  font-size: 26px;
  margin-bottom: 30px;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 15px;
}

.compare-table thead {
  background: #f8fafc;
}

.compare-table tr:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}

/* ================================
   PORTAL CARD – PRO VERSION
================================ */

.portal-card-pro {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 26px 32px;
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
  max-width: 340px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portal-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15,23,42,0.14);
}

/* Badge rechts oben */
.portal-card-pro__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Header */
.portal-card-pro__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.portal-card-pro__logo {
  height: 32px;
  object-fit: contain;
}

.portal-card-pro__stars {
  font-size: 14px;
  color: #facc15;
  letter-spacing: 2px;
}

/* Name & Ort */
.portal-card-pro__name {
  font-size: 22px;
  font-weight: 800;
  margin: 10px 0 2px;
  color: #0f172a;
}

.portal-card-pro__location {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
}

/* Features */
.portal-card-pro__features {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
  font-size: 15px;
}

.portal-card-pro__features li {
  margin-bottom: 10px;
  color: #0f172a;
}

/* Auszahlung */
.portal-card-pro__payout {
  font-size: 14px;
  color: #334155;
  margin-bottom: 14px;
}

.portal-card-pro__payout span {
  color: #64748b;
}

/* Mehr erfahren */
.portal-card-pro__more {
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

/* CTA Button */
.portal-card-pro__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease;
}

.portal-card-pro__cta:hover {
  background: #1e40af;
}
/* ================================
   PORTAL GRID
================================ */

.portal-grid {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}
