/* BauTano Landingpage — Markenfarben aus der App */
:root {
  --orange: #EA580C;
  --orange-hell: #F97316;
  --orange-tief: #FD5603;
  --navy: #1A1A2E;
  --text: #1A1A2E;
  --text-2: #5B6472;
  --bg: #F6F7F9;
  --weiss: #FFFFFF;
  --creme: #FFECE0;
  --radius: 18px;
  --schatten: 0 10px 30px rgba(15, 27, 45, .10);
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ECEEF2;
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 64px;
}
.marke {
  display: flex; align-items: center; gap: 9px;
  font-weight: 900; font-size: 19px; letter-spacing: .04em;
  text-decoration: none;
}
.marke img { height: 34px; }
.marke .ta { color: var(--orange); }
.nav-links {
  display: flex; gap: 24px; margin-left: auto;
  list-style: none;
}
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: 15px;
  color: var(--text-2);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: 9px 20px; border-radius: 999px;
}
.nav-cta:hover { background: var(--orange-hell); }
.lang {
  position: relative; margin-left: 8px;
}
.lang summary {
  list-style: none; cursor: pointer;
  font-weight: 700; font-size: 14px; color: var(--text-2);
  display: flex; align-items: center; gap: 5px;
  padding: 7px 10px; border: 1px solid #E2E5EA; border-radius: 10px;
}
.lang summary::-webkit-details-marker { display: none; }
.lang[open] summary { color: var(--orange); border-color: var(--orange); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid #ECEEF2; border-radius: 14px;
  box-shadow: var(--schatten);
  padding: 8px; min-width: 160px;
  display: grid; gap: 2px;
}
.lang-menu a {
  text-decoration: none; font-size: 14px; font-weight: 700;
  padding: 8px 12px; border-radius: 9px; color: var(--text);
}
.lang-menu a:hover { background: var(--creme); color: var(--orange); }
.lang-menu a.aktiv { color: var(--orange); }
.burger { display: none; }

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, var(--orange-tief) 0%, #E64404 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  /* Hero füllt den Viewport komplett (abzüglich Sticky-Header) */
  height: calc(100vh - 64px);
  min-height: 560px;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 72% 60%, rgba(255,160,100,.35), transparent 70%);
  pointer-events: none;
}
.hero .wrap { height: 100%; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px;
  align-items: center; height: 100%;
  position: relative; z-index: 1;
}
.hero h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 900; line-height: 1.12;
  text-shadow: 0 3px 14px rgba(0,0,0,.18);
}
.hero p.sub {
  margin-top: 18px; font-size: 19px; color: var(--creme);
  max-width: 32em;
}
.badges { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 11px;
  background: #0E0E12; color: #fff; text-decoration: none;
  padding: 11px 22px 11px 16px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25);
  transition: transform .15s ease;
}
.badge:hover { transform: translateY(-2px); }
.badge svg { width: 26px; height: 26px; flex: none; }
.badge small { display: block; font-size: 11px; opacity: .75; line-height: 1.2; }
.badge strong { font-size: 17px; line-height: 1.2; }
.trust {
  display: flex; gap: 22px; margin: 30px 0 0; padding: 0;
  list-style: none; flex-wrap: wrap;
}
.trust li {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14.5px;
}
.trust svg { width: 19px; height: 19px; flex: none; }
.hero-phone {
  justify-self: center; align-self: center;
  height: 82%; width: auto; max-width: 86%;
  object-fit: contain;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,.35));
  animation: schweben 5.5s ease-in-out infinite;
}
@keyframes schweben {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-phone { animation: none; }
}

/* ── Sektionen ── */
section { padding: 78px 0; }
.s-kopf { text-align: center; max-width: 620px; margin: 0 auto 46px; }
.s-kopf h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; }
.s-kopf p { color: var(--text-2); margin-top: 10px; font-size: 17px; }

/* Features */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feat {
  background: #fff; border-radius: var(--radius);
  padding: 26px; box-shadow: var(--schatten);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feat:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 27, 45, .16);
}
.feat .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--creme);
  display: grid; place-items: center; margin-bottom: 16px;
}
.feat .icon svg { width: 26px; height: 26px; }
.feat h3 { font-size: 18px; font-weight: 900; margin-bottom: 7px; }
.feat p { color: var(--text-2); font-size: 15px; }

/* Screenshots */
.shots { background: linear-gradient(160deg, var(--orange-tief), #E64404); }
.shots .s-kopf h2, .shots .s-kopf p { color: #fff; }
.shots .s-kopf p { color: var(--creme); }
/* Auto-Laufband: rechts → links, pausiert bei Hover; weiche Kanten */
.shot-band {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.shot-track {
  display: flex; gap: 26px; width: max-content;
  padding: 8px 0 14px;
  animation: shot-lauf 45s linear infinite;
}
.shot-band:hover .shot-track { animation-play-state: paused; }
.shot-track img {
  width: 232px; flex: none;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.3));
}
@keyframes shot-lauf {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 13px)); }
}
@media (prefers-reduced-motion: reduce) {
  .shot-track { animation: none; }
  .shot-band { overflow-x: auto; }
}

/* Preise */
.preis-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); gap: 24px;
  justify-content: center;
}
.preis {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--schatten); border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}
.preis:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 27, 45, .16);
}
.preis.pro { border-color: var(--orange); position: relative; }
.preis.pro .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-weight: 900; font-size: 13px;
  padding: 4px 16px; border-radius: 999px; letter-spacing: .03em;
}
.preis h3 { font-size: 22px; font-weight: 900; }
.preis ul { list-style: none; margin-top: 18px; display: grid; gap: 11px; }
.preis li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.preis li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.preis .hinweis { margin-top: 18px; font-size: 13.5px; color: var(--text-2); }

/* FAQ */
.faq-liste { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-liste details {
  background: #fff; border-radius: 14px; padding: 18px 22px;
  box-shadow: var(--schatten);
}
.faq-liste summary {
  cursor: pointer; font-weight: 900; font-size: 16.5px;
  list-style: none; display: flex; justify-content: space-between; gap: 14px;
}
.faq-liste summary::-webkit-details-marker { display: none; }
.faq-liste summary::after {
  content: '+'; color: var(--orange); font-size: 22px; line-height: 1;
}
.faq-liste details[open] summary::after { content: '–'; }
.faq-liste details p { margin-top: 10px; color: var(--text-2); font-size: 15.5px; }

/* Schluss-CTA */
.cta-banner {
  background: linear-gradient(160deg, var(--orange-tief), #E64404);
  border-radius: 24px; color: #fff; text-align: center;
  padding: 56px 28px;
}
.cta-banner h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 900; }
.cta-banner p { color: var(--creme); margin-top: 10px; font-size: 17px; }
.cta-banner .badges { justify-content: center; }

/* Footer */
footer {
  padding: 44px 0 36px; color: var(--text-2); font-size: 14px;
}
.foot {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
}
.foot a { color: var(--text-2); }
.foot-lang { display: flex; gap: 12px; flex-wrap: wrap; list-style: none; }
.foot-lang a { text-decoration: none; font-weight: 700; }
.foot-lang a:hover, .foot-lang a.aktiv { color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { height: auto; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; height: auto; padding: 46px 0 0; }
  .hero p.sub { margin-inline: auto; }
  .badges, .trust { justify-content: center; }
  .hero-phone { height: auto; width: min(300px, 75%); margin: 34px 0 26px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .preis-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 18px 22px;
    border-bottom: 1px solid #ECEEF2; gap: 16px;
  }
  .nav-links.offen { display: flex; }
  .burger {
    display: block; margin-left: auto; background: none; border: 0;
    font-size: 26px; cursor: pointer; color: var(--navy);
  }
  .lang { margin-left: 0; }
  .feat-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

/* ── Cookie-Consent ── */
.cc-hintergrund {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 27, 45, .45);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px;
}
.cc-box {
  background: #fff; border-radius: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.3);
  max-width: 560px; width: 100%; padding: 26px 26px 22px;
  max-height: 86vh; overflow-y: auto;
}
.cc-box h2 { font-size: 19px; font-weight: 900; margin-bottom: 8px; }
.cc-box p { font-size: 14.5px; color: var(--text-2); }
.cc-box p a { color: var(--orange); font-weight: 700; }
.cc-knoepfe { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.cc-btn {
  border: 0; cursor: pointer; font: inherit; font-weight: 800; font-size: 14.5px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--orange); color: #fff; flex: 1 1 auto;
}
.cc-btn.cc-ess { background: var(--navy); }
.cc-btn.cc-leise { background: #EEF0F4; color: var(--text); }
.cc-btn:hover { filter: brightness(1.08); }
.cc-zeile {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid #EEF0F4; cursor: pointer;
}
.cc-zeile strong { display: block; font-size: 15px; }
.cc-zeile small { display: block; color: var(--text-2); font-size: 13px; line-height: 1.45; }
.cc-zeile input { width: 22px; height: 22px; accent-color: var(--orange); flex: none; }
