/* =========================================================
   Dachkompass – Landingpage Styles
   Marke: Dach + Kompass · bunt, modern, handwerkerfreundlich
   ========================================================= */

:root {
  --blue: #2563eb;
  --blue-dark: #1e3a8a;
  --cyan: #06b6d4;
  --green: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;

  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-tint: #f1f5f9;

  --grad-brand: linear-gradient(120deg, #2563eb 0%, #06b6d4 55%, #10b981 100%);
  --grad-warm: linear-gradient(120deg, #f59e0b 0%, #f43f5e 100%);
  --grad-hero: radial-gradient(1200px 600px at 80% -10%, rgba(6,182,212,.18), transparent 60%),
               radial-gradient(900px 500px at 5% 10%, rgba(37,99,235,.16), transparent 55%),
               linear-gradient(180deg, #0b1220 0%, #0b1530 100%);

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 2px 6px rgba(15,23,42,.05);
  --shadow-md: 0 10px 30px rgba(15,23,42,.10);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.18);
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1160px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 .4em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--ink-soft); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tint { background: var(--bg-soft); }
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
  background: rgba(37,99,235,.08); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.12rem; color: var(--muted); }
.gradient-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 14px;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 8px 24px rgba(37,99,235,.32); }
.btn--primary:hover { box-shadow: 0 12px 32px rgba(37,99,235,.42); transform: translateY(-2px); }
.btn--warm { background: var(--grad-warm); color: #fff; box-shadow: 0 8px 24px rgba(244,63,94,.30); }
.btn--warm:hover { transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.2); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.2rem; }
.brand svg { width: 38px; height: 38px; }
.brand .tld { color: var(--muted); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: .98rem; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--grad-hero);
  padding: 96px 0 110px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.10) 1px, transparent 0);
  background-size: 38px 38px; mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 600;
  color: #d7e3ff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(16,185,129,.25); }
.hero h1 { color: #fff; }
.hero h1 .accent { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.2rem; color: #c7d2e6; max-width: 540px; margin: 18px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap; color: #9fb0cc; font-size: .92rem; }
.hero-trust b { color: #fff; font-size: 1.35rem; font-weight: 800; display: block; }

/* Hero card (mock map) */
.hero-card {
  background: rgba(255,255,255,.96); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 18px; color: var(--ink);
  transform: rotate(.6deg);
}
.map-mock {
  position: relative; height: 300px; border-radius: 16px; overflow: hidden;
  background:
    linear-gradient(135deg, #eef5ff, #e8fff6);
  border: 1px solid var(--line);
}
.map-grid { position: absolute; inset: 0; background-image:
    linear-gradient(rgba(37,99,235,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.08) 1px, transparent 1px);
  background-size: 30px 30px; }
.hail-zone { position: absolute; border-radius: 50%; filter: blur(2px); }
.hz1 { width: 130px; height: 130px; left: 40px; top: 50px; background: radial-gradient(circle, rgba(244,63,94,.55), rgba(244,63,94,0) 70%); }
.hz2 { width: 90px; height: 90px; right: 60px; top: 40px; background: radial-gradient(circle, rgba(245,158,11,.5), rgba(245,158,11,0) 70%); }
.hz3 { width: 70px; height: 70px; right: 90px; bottom: 40px; background: radial-gradient(circle, rgba(6,182,212,.5), rgba(6,182,212,0) 70%); }
.pin { position: absolute; width: 16px; height: 16px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: var(--shadow-sm); }
.pin::after { content:""; position:absolute; inset: 4px; background:#fff; border-radius:50%; }
.pin-a { left: 95px; top: 100px; background: var(--rose); }
.pin-b { right: 95px; top: 78px; background: var(--amber); }
.pin-c { right: 120px; bottom: 70px; background: var(--cyan); }
.map-tag {
  position: absolute; bottom: 14px; left: 14px; background: #fff; border-radius: 12px;
  padding: 8px 12px; box-shadow: var(--shadow-md); font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.map-tag .blink { width: 9px; height: 9px; border-radius: 50%; background: var(--rose); animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.card-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 6px 4px; }
.card-foot small { color: var(--muted); }
.card-foot .live { color: var(--green); font-weight: 700; display:flex; align-items:center; gap:6px; }
.card-foot .live .blink { width:8px;height:8px;border-radius:50%;background:var(--green);animation:blink 1.4s infinite;}

/* ---------- Logos / trust strip ---------- */
.strip { padding: 28px 0; border-bottom: 1px solid var(--line); background: var(--bg); }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 38px; flex-wrap: wrap; color: var(--muted); font-weight: 600; font-size: .95rem; }
.strip-inner span { display: flex; align-items: center; gap: 9px; }

/* ---------- Problem ---------- */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prob-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.prob-card .num { font-size: 2rem; font-weight: 800; background: var(--grad-warm); -webkit-background-clip:text; background-clip:text; color:transparent; }
.prob-card h3 { margin-top: 6px; }
.prob-card p { margin: 0; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; }
.step .badge {
  width: 46px; height: 46px; border-radius: 14px; background: var(--grad-brand); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; font-size: .96rem; color: var(--muted); }

/* ---------- Features / Module ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.3); }
.feat .ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat .ico svg { width: 26px; height: 26px; stroke: #fff; }
.ico.b1 { background: linear-gradient(135deg,#2563eb,#06b6d4); }
.ico.b2 { background: linear-gradient(135deg,#06b6d4,#10b981); }
.ico.b3 { background: linear-gradient(135deg,#f59e0b,#f43f5e); }
.ico.b4 { background: linear-gradient(135deg,#8b5cf6,#2563eb); }
.ico.b5 { background: linear-gradient(135deg,#10b981,#84cc16); }
.ico.b6 { background: linear-gradient(135deg,#f43f5e,#f59e0b); }
.feat h3 { margin-bottom: 8px; }
.feat p { margin: 0; color: var(--muted); font-size: .98rem; }
.feat .soon { display:inline-block; margin-top:14px; font-size:.72rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--amber); background:rgba(245,158,11,.1); padding:4px 10px; border-radius:999px; }

/* ---------- Audience ---------- */
.aud-wrap { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.aud-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.aud-chip { display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line); border-radius:12px; padding:12px 14px; font-weight:600; box-shadow: var(--shadow-sm); }
.aud-chip .tick { width:22px;height:22px;border-radius:50%;background:var(--grad-brand);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.8rem;flex:none; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px;
  display:flex; flex-direction:column; box-shadow: var(--shadow-sm); position: relative;
}
.price.featured { border: 2px solid transparent; background:
  linear-gradient(#fff,#fff) padding-box, var(--grad-brand) border-box; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.price .tag { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--grad-brand); color:#fff; font-size:.78rem; font-weight:700; padding:6px 16px; border-radius:999px; letter-spacing:.03em; }
.price h3 { font-size: 1.15rem; }
.price .amount { font-size: 2.4rem; font-weight: 800; margin: 6px 0 2px; }
.price .amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price .desc { color: var(--muted); font-size: .95rem; margin-bottom: 20px; min-height: 42px; }
.price ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.price li { display:flex; gap:10px; align-items:flex-start; font-size:.97rem; color: var(--ink-soft); }
.price li svg { width:20px;height:20px;flex:none;margin-top:2px; }
.price .btn { margin-top: auto; }
.price-note { text-align:center; color: var(--muted); font-size:.92rem; margin-top: 28px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { background:#fff; border:1px solid var(--line); border-radius: 14px; padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.faq summary { cursor:pointer; font-weight:700; font-size:1.05rem; padding: 18px 0; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary .chev { transition: transform .2s ease; color: var(--blue); font-size:1.4rem; line-height:1; flex:none; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; color: var(--muted); }

/* ---------- CTA / Waitlist ---------- */
.cta { position: relative; overflow: hidden; color:#fff; background: var(--grad-hero); border-radius: 0; }
.cta-card { max-width: 760px; margin: 0 auto; text-align:center; position: relative; z-index:1; }
.cta h2 { color:#fff; }
.cta p { color:#c7d2e6; font-size:1.1rem; }
.waitlist { display:flex; gap:12px; max-width:520px; margin: 28px auto 14px; }
.waitlist input {
  flex:1; padding: 15px 18px; border-radius: 14px; border:1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1); color:#fff; font-size:1rem; font-family: var(--font);
}
.waitlist input::placeholder { color: #aab8d4; }
.waitlist input:focus { outline:none; border-color: var(--cyan); background: rgba(255,255,255,.16); }
.cta small { color:#9fb0cc; }
.form-msg { margin-top:14px; font-weight:600; min-height: 22px; }
.form-msg.ok { color: #6ee7b7; }

/* ---------- Footer ---------- */
.footer { background:#0b1220; color:#9fb0cc; padding: 64px 0 30px; }
.foot-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer .brand { color:#fff; margin-bottom: 14px; }
.footer p { color:#8595b3; font-size:.95rem; max-width: 280px; }
.foot-col h4 { color:#fff; font-size:.95rem; margin:0 0 14px; }
.foot-col a { display:block; color:#9fb0cc; padding:5px 0; font-size:.95rem; }
.foot-col a:hover { color:#fff; }
.foot-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.88rem; color:#64748b; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { transform:none; max-width: 520px; }
  .prob-grid, .feat-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .aud-wrap { grid-template-columns: 1fr; gap: 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .price.featured { transform:none; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .nav-links { display:none; }
  .nav-toggle { display:block; }
  .nav-cta .btn--primary { display:none; }
  .nav-links.open { display:flex; position:absolute; top:72px; left:0; right:0; flex-direction:column; background:#fff; padding:20px 24px; border-bottom:1px solid var(--line); gap:16px; box-shadow: var(--shadow-md); }
  .prob-grid, .feat-grid, .price-grid, .steps, .aud-list, .foot-grid { grid-template-columns: 1fr; }
  .waitlist { flex-direction: column; }
  .hero-trust { gap: 20px; }
}
