/* FishFinder — Landing-Page Styles
   Schweizer/Apple-Look: viel Weissraum, klare Typo, Cyan-Blau-Verlauf
   als Akzent. Responsiv ohne Framework.
   ============================================================= */

:root {
  --bg:        #fafbfd;
  --bg-card:   #ffffff;
  --fg:        #0e1320;
  --fg-soft:   #4d586b;
  --fg-muted:  #828c9c;
  --border:    #e6ebf2;
  --cyan:      #00b8e6;
  --blue:      #0067cc;
  --grad:      linear-gradient(135deg, #00b8e6 0%, #0067cc 100%);
  --grad-soft: linear-gradient(135deg, #e6f7fb 0%, #e6f0fc 100%);
  --shadow:    0 4px 20px rgba(15, 30, 60, 0.06);
  --radius:    18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
               "Helvetica Neue", Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; margin: 0 0 1rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin: 0 0 1.2rem; }
h3 { font-size: 1.2rem; font-weight: 600; margin: 0.5rem 0; }
h4 { font-size: 0.9rem; font-weight: 700; margin: 0 0 0.5rem; color: var(--fg-soft);
     text-transform: uppercase; letter-spacing: 0.5px; }

p { margin: 0 0 1rem; color: var(--fg-soft); }
ul { color: var(--fg-soft); }

/* ===== Header / Nav ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(250, 251, 253, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
}
.brand img { border-radius: 9px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--fg-soft);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--blue); text-decoration: none; }

/* ===== Hero ===== */
.hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { font-weight: 800; }
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  font-size: 1.2rem;
  max-width: 520px;
  color: var(--fg-soft);
  margin-bottom: 2rem;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 1rem; }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta.primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 184, 230, 0.35);
}
.cta.primary:hover { transform: translateY(-2px); text-decoration: none;
                     box-shadow: 0 6px 22px rgba(0, 184, 230, 0.45); }
.cta.secondary {
  background: white;
  color: var(--fg);
  border: 1.5px solid var(--border);
}
.cta.secondary:hover { background: var(--grad-soft); text-decoration: none; }
.cta-emoji { font-size: 1.2em; }
.hero-foot { font-size: 0.85rem; color: var(--fg-muted); margin: 0; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero-visual img { max-width: 100%; height: auto; max-height: 600px; }
.mockup-placeholder {
  display: none;
  width: 280px;
  height: 540px;
  background: var(--grad-soft);
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 8px solid var(--fg);
  box-shadow: var(--shadow);
}

/* ===== Features ===== */
.features {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.features h2 { margin-bottom: 3rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}
.feature {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: 0 6px 30px rgba(15, 30, 60, 0.1); }
.feature-icon { font-size: 2.4rem; margin-bottom: 10px; }
.feature h3 { color: var(--fg); }
.feature p { font-size: 0.95rem; margin: 0; }

/* ===== Lakes ===== */
.lakes {
  background: var(--grad-soft);
  padding: 80px 24px;
  text-align: center;
}
.lakes h2 { margin-bottom: 0.5rem; }
.lakes-lead {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--fg-soft);
}
.lake-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.lake-grid div {
  background: white;
  padding: 16px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--fg);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}

/* ===== Pricing ===== */
.pricing {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.price-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
}
.price-card.highlight {
  border-color: var(--cyan);
  background: linear-gradient(180deg, white 0%, #f0fbff 100%);
}
.price-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--grad);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.price-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1rem;
}
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--fg-muted); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-card li {
  padding: 6px 0;
  color: var(--fg-soft);
}
.price-card li::before {
  content: "✓ ";
  color: var(--cyan);
  font-weight: bold;
}
.trial-note { color: var(--fg-muted); font-size: 0.9rem; }

/* ===== Download ===== */
.download {
  background: var(--grad);
  color: white;
  padding: 80px 24px;
  text-align: center;
}
.download h2 { color: white; }
.download p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.appstore-link img { height: 60px; }
.appstore-fallback {
  display: inline-block;
  padding: 14px 28px;
  background: black;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ===== Footer ===== */
footer {
  background: var(--fg);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 24px 24px;
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.footer-brand img { border-radius: 7px; }
.footer-tag { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; margin: 0; }
footer h4 { color: rgba(255, 255, 255, 0.55); font-size: 0.75rem; }
footer a { display: block; color: rgba(255, 255, 255, 0.75); margin-bottom: 6px; font-size: 0.95rem; }
footer a:hover { color: white; }
footer p { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; margin: 0 0 6px; }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.footer-bottom a { display: inline; color: rgba(255, 255, 255, 0.7); margin: 0 6px; }

/* ===== Legal pages ===== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal h1 { font-size: 2.4rem; margin-bottom: 0.5rem; }
.legal h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.legal .legal-date { color: var(--fg-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal .lead { font-size: 1.15rem; }
.legal ul { padding-left: 1.4rem; }
.legal li { padding: 4px 0; }
.legal code {
  background: var(--bg-card);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 0.9em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.legal details {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.legal details[open] { box-shadow: var(--shadow); }
.legal summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
}
.legal details p { margin: 12px 0 0; }

/* ===== Responsive ===== */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 24px 40px;
    text-align: center;
  }
  .lead { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-visual { min-height: 320px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.85rem; }
}
