/* Stellplatz — landing page styles (shared by index.html, de.html, en.html) */

:root {
  --cream: #f4f1eb;
  --ink: #1b1b1a;
  --muted: #5d5d57;
  --green: #56ad5e;
  --green-dark: #3b7640;
  --green-bright: #4caf50;
  --green-deep: #244827;
  --pink: #d74a50;
  --card: #fff;
  --maxw: 1080px;
  --font-head: "Roboto Slab", Georgia, "Times New Roman", serif;
  --font-body: "Roboto", system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.05; margin: 0; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: none; width: 100%; margin: 0 auto; padding: 0 24px; }
.green { color: var(--green); }
.pink { color: var(--pink); }

/* ---- promo bar ---- */
.promo {
  background: var(--green-bright);
  color: #fff;
}
.promo .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 24px; flex-wrap: wrap;
}
.promo p { font-size: 15px; }
.promo .btn {
  flex: none;
  background: #fff; color: var(--green-dark);
  text-decoration: none; font-weight: 700; font-size: 14px;
  padding: 8px 18px; border-radius: 10px; white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.promo .btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.18); }

/* ---- header ---- */
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 18px; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.langs { display: flex; align-items: center; gap: 12px; }
.langs a { display: inline-flex; opacity: .5; transition: opacity .15s, transform .15s; }
.langs a:hover { opacity: 1; transform: translateY(-1px); }
.langs a.active { opacity: 1; }
.langs img { width: 30px; height: 22px; border-radius: 4px; object-fit: cover; box-shadow: 0 1px 3px rgba(0,0,0,.2); }

/* ---- hero ---- */
.hero {
  min-height: 70svh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
  background-image: linear-gradient(0deg, var(--cream), rgba(244,241,235,0) 38%), url("images/topography.svg");
  background-position: 0 0, 50% 50%;
  background-size: auto, cover;
  background-repeat: no-repeat;
}
.hero-inner { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; padding-left: clamp(24px, 4vw, 56px); padding-right: clamp(24px, 4vw, 56px); }
.hero-text { flex: 1 1 0; min-width: 0; max-width: 820px; }
.hero .app-icon { width: 80px; height: 80px; border-radius: 20px; margin: 0 0 24px; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.9rem); margin: 0; }
.hero .lead { font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: var(--muted); max-width: 46ch; margin: 22px 0 0; }
.hero .store-badges { justify-content: flex-start; }
.hero .phone { flex: 0 0 auto; width: 546px; max-width: 52%; margin: 120px 80px 0 0; }

.store-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.store-badges a { display: inline-flex; transition: transform .15s; }
.store-badges a:hover { transform: translateY(-2px); }
.store-badges img { height: 52px; width: auto; }

@media (max-width: 860px) {
  .hero { min-height: auto; padding: 40px 0; }
  .hero-inner { flex-direction: column; text-align: center; gap: 8px; }
  .hero-text .app-icon { margin-left: auto; margin-right: auto; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero .store-badges { justify-content: center; }
  .hero .phone { width: 460px; max-width: 88%; margin-top: 40px; }
}

/* ---- stats ---- */
.stats { background: url("images/wave.svg") 60% 0 / cover no-repeat; color: var(--cream); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 50svh; }
.stats .container { display: flex; gap: clamp(40px, 6vw, 80px); justify-content: center; flex-wrap: wrap; width: 100%; padding-top: 56px; padding-bottom: 56px; text-align: center; }
.stat { flex: 1 1 100px; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; }
.stat .label { font-size: 1.15rem; opacity: .92; margin-top: 8px; }

/* ---- section scaffolding ---- */
section { scroll-margin-top: 24px; }
.section-title { text-align: center; font-size: clamp(1.8rem, 4.5vw, 3rem); max-width: 18ch; margin: 0 auto; }

/* ---- features ---- */
.features { padding: 96px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px 32px; margin-top: 64px; }
.feature { text-align: center; }
.feature img { width: auto; max-height: 420px; margin: 0 auto 20px; }
.feature h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.25rem; }
.feature p { color: var(--muted); margin-top: 8px; max-width: 34ch; margin-left: auto; margin-right: auto; }

/* ---- premium ---- */
.premium { background: rgba(0,0,0,.035); padding: 80px 0; }
.eyebrow { text-align: center; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .9rem; color: var(--muted); }
.premium h2 { text-align: center; font-size: clamp(1.6rem, 4vw, 2.75rem); max-width: 20ch; margin: 12px auto 0; }
.price-grid { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 48px; }
.price-card { background: var(--card); border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.08); width: 360px; max-width: 100%; overflow: hidden; display: flex; flex-direction: column; }
.price-card .head { background: var(--green); color: #fff; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; font-size: .95rem; padding: 16px 24px; }
.price-card .body { padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.price-card .price { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--pink); line-height: 1.1; }
.price-card .note { color: var(--muted); font-size: .98rem; margin-bottom: 20px; }
.btn-pink {
  margin-top: auto; align-self: stretch; text-align: center;
  background: var(--pink); color: #fff; text-decoration: none;
  font-weight: 600; padding: 13px 20px; border-radius: 100px; border: 0;
  cursor: pointer; font-size: 1rem; transition: filter .15s, transform .15s;
}
.btn-pink:hover { filter: brightness(1.07); transform: translateY(-1px); }

/* ---- reviews ---- */
.reviews { padding: 96px 0; text-align: center; }
.reviews .stars { height: 40px; width: auto; margin: 0 auto 40px; }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.quote { background: var(--card); border-radius: 16px; padding: 28px 26px; font-style: italic; font-size: 1.1rem; color: #333; box-shadow: 0 6px 18px rgba(0,0,0,.05); }

/* ---- download cta ---- */
.download { text-align: center; padding: 24px 0 96px; }
.download p { font-size: 1.25rem; margin-bottom: 28px; }

/* ---- content / legal pages ---- */
.page { padding: 56px 0 96px; }
.prose { max-width: 760px; }
.prose h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 24px; }
.prose h2, .prose h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; margin: 2em 0 .5em; }
.prose h4 { font-weight: 700; font-size: 1.08rem; margin: 1.5em 0 .4em; }
.prose p { margin: 1em 0; color: #2c2c2a; }
.prose ul, .prose ol { margin: 1em 0; padding-left: 1.4em; }
.prose li { margin: .4em 0; }
.prose a { color: var(--green-dark); }

/* ---- simple centered pages (premium / campaign / redirect) ---- */
.simple { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 62svh; }
.simple-inner { max-width: 680px; }
.simple-inner .app-icon { width: 84px; height: 84px; border-radius: 20px; margin: 0 auto 24px; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.simple-inner h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.simple-inner .lead { font-size: 1.2rem; color: var(--muted); margin: 20px auto 0; }
.simple-inner .store-badges { margin-top: 32px; }

/* ---- footer ---- */
.site-footer {
  background: linear-gradient(152deg, var(--green) 43%, var(--green-deep));
  color: #fff; text-align: center;
}
.site-footer .container { display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 48px; padding-bottom: 48px; }
.site-footer .campio { height: 34px; width: auto; }
.site-footer a { color: #fff; }
.site-footer .small { font-size: .9rem; }
.site-footer .faint { opacity: .65; font-size: .85rem; }

/* ---- responsive tweaks ---- */
@media (max-width: 600px) {
  .stats { min-height: auto; }
  .stats .container { flex-direction: column; gap: 20px; }
  .promo p { font-size: 14px; }
  .hero { padding-top: 32px; }
}
