/* ─── DESIGN TOKENS ─── */
:root {
  --teal: #3DBFB8;
  --teal-dark: #2a9e97;
  --teal-light: #e8f8f7;
  --ink: #111827;
  --slate: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 68px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 44px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--slate);
  font-size: 14px; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 8px;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important; font-size: 14px !important;
  transition: opacity 0.15s !important;
  border: none; cursor: pointer;
  text-decoration: none; display: inline-flex;
  align-items: center; margin: 0; line-height: 1;
}
.nav-cta:hover { opacity: 0.85; }
.btn-nav-login { color: var(--slate) !important; }

.nav-auth-group {
  display: flex; align-items: center; gap: 12px;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
}

/* ─── HERO ─── */
.hero {
  padding: 120px 6% 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-content { max-width: 640px; }
.hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
h1 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700; color: var(--ink);
  line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 32px;
}
h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 16px; color: var(--slate); line-height: 1.7;
  max-width: 520px; margin-bottom: 28px; margin-top: -16px;
}

/* ─── SEARCH BOX ─── */
.search-box {
  display: flex; flex-wrap: wrap;
  gap: 0;
  border: 2px solid var(--ink);
  border-radius: 14px;
  max-width: 660px;
  background: var(--white);
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.search-field {
  display: flex; flex-direction: column;
  padding: 16px 20px; flex: 1; min-width: 130px;
  border-right: 1px solid var(--border);
}
.search-field:first-child { border-radius: 12px 0 0 12px; }
.search-field:last-of-type { border-right: none; }
.search-label {
  font-size: 10px; font-weight: 700;
  color: var(--slate); letter-spacing: 0.09em;
  text-transform: uppercase; margin-bottom: 4px;
}
.search-input {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--ink); border: none; outline: none;
  background: transparent; width: 100%; cursor: pointer;
}
.search-btn {
  background: var(--ink); color: var(--white);
  border: none; padding: 0 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 0.15s;
  white-space: nowrap; min-width: 120px;
  border-radius: 0 12px 12px 0;
}
.search-btn:hover { background: #374151; }

/* ─── HERO META ─── */
.hero-meta {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; font-size: 13px; color: var(--slate);
  flex-wrap: wrap;
}
.hero-meta a {
  color: var(--teal); font-weight: 600; text-decoration: none;
}
.hero-meta a:hover { text-decoration: underline; }
.hero-meta-dot { color: var(--border); }

/* ─── TRUST ROW ─── */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 28px;
  padding: 20px 6%;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--slate);
}
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.trust-check {
  color: var(--teal); font-weight: 700; font-size: 13px; flex-shrink: 0;
}

/* ─── SECTIONS ─── */
section { padding: 80px 6%; }
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px; display: block;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; color: var(--ink);
  letter-spacing: -0.8px; line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px; color: var(--slate);
  line-height: 1.7; max-width: 480px;
}

/* ─── BOATS ─── */
.boats-section { background: var(--bg); }
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 16px;
  margin-bottom: 36px;
}
.link-all {
  font-size: 14px; font-weight: 600; color: var(--teal);
  text-decoration: none; transition: opacity 0.15s;
}
.link-all:hover { opacity: 0.7; }

.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.boat-card {
  background: var(--white);
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none; display: block; color: inherit;
}
.boat-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.boat-img-placeholder {
  width: 100%; height: 190px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.boat-img-placeholder.type-1 { background: linear-gradient(135deg, #1a3a4a, #3DBFB8); }
.boat-img-placeholder.type-2 { background: linear-gradient(135deg, #0d2a35, #2a9e97); }
.boat-img-placeholder.type-3 { background: linear-gradient(135deg, #3DBFB8, #1a3a4a); }
.boat-img {
  width: 100%; height: 190px;
  object-fit: cover; display: block;
}
.boat-type-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.95); color: var(--ink);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 6px;
  letter-spacing: 0.03em;
}
.boat-info { padding: 16px 18px; }
.boat-lake {
  font-size: 12px; color: var(--slate);
  font-weight: 500; margin-bottom: 4px;
}
.boat-name {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.boat-meta {
  display: flex; gap: 12px;
  font-size: 12px; color: var(--slate);
  margin-bottom: 14px; flex-wrap: wrap;
}
.boat-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.boat-price {
  font-size: 20px; font-weight: 800; color: var(--ink);
}
.boat-price-label { font-size: 12px; color: var(--slate); }
.boat-stars { font-size: 13px; font-weight: 600; color: var(--ink); }

.boat-card .boat-cta {
  display: block; width: 100%;
  margin-top: 12px; padding: 10px;
  background: var(--ink); color: var(--white);
  border-radius: 8px; font-size: 13px; font-weight: 600;
  text-align: center;
  transition: background 0.15s;
}
.boat-card:hover .boat-cta { background: var(--teal); }

/* ─── BOAT BADGES ─── */
.badge-popular {
  position: absolute; top: 10px; right: 10px;
  background: #f59e0b; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 6px;
  letter-spacing: 0.04em;
}
.badge-nolicense {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(255,255,255,0.92); color: var(--teal);
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 6px;
}

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px; margin-top: 52px;
}
.step-item {}
.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--teal); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 12px;
}
.step-title-h {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ─── PROVIDER ─── */
.provider-section { background: var(--bg); }
.provider-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.provider-benefits {
  list-style: none; margin: 24px 0 32px;
  display: flex; flex-direction: column; gap: 11px;
}
.provider-benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--slate);
}
.benefit-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); color: var(--ink);
  padding: 10px 20px; border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; background: transparent;
  transition: border-color 0.15s, background 0.15s;
}
.btn-outline:hover { border-color: var(--ink); background: var(--bg); }

.earnings-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
}
.earnings-card-title {
  font-size: 11px; font-weight: 700;
  color: var(--slate); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px;
}
.earnings-calc { margin-bottom: 20px; }
.earnings-label { font-size: 13px; color: var(--slate); margin-bottom: 8px; }
.earnings-slider { width: 100%; accent-color: var(--teal); margin-bottom: 6px; }
.earnings-value {
  font-family: 'Inter', sans-serif;
  font-size: 40px; font-weight: 800;
  color: var(--ink); letter-spacing: -1.5px; margin-top: 16px;
}
.earnings-value span { font-size: 16px; color: var(--slate); font-weight: 400; }
.earnings-note { font-size: 12px; color: var(--slate); line-height: 1.6; margin-top: 10px; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 6% 32px;
  background: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-desc {
  font-size: 13px; line-height: 1.7;
  color: var(--slate); margin-top: 12px; max-width: 220px;
}
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--ink); margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  text-decoration: none; color: var(--slate);
  font-size: 13px; transition: color 0.15s;
}
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--slate);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--slate); text-decoration: none; transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--ink); }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--ink); color: var(--white);
  padding: 12px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 8px;
  animation: fadeUp 0.25s ease;
}
.toast.success { border-left: 3px solid var(--teal); }
.toast.error { border-left: 3px solid #ef4444; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 20px 6%; gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .search-box { flex-direction: column; }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); }
  .search-field:last-of-type { border-bottom: none; }
  .search-btn { padding: 16px; min-width: unset; }
  .trust-row { gap: 16px; }
  .provider-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .search-input, .search-field select { font-size: 16px; }
}

/* ── Cookie-Hinweis ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: #e5e7eb;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  padding: 14px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9000;
  flex-wrap: wrap;
}
.cookie-banner a {
  color: var(--teal);
  text-decoration: none;
}
.cookie-banner a:hover { text-decoration: underline; }
.cookie-banner-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.cookie-banner-btn:hover { background: var(--teal-dark); }
@media (max-width: 480px) {
  .cookie-banner { font-size: 12px; }
  .cookie-banner-btn { width: 100%; text-align: center; }
}
