/* Quandu landing page — aligned with the app's brand (orange gradient, white cards, round corners). */
:root {
  --brand: #ff7a1e;
  --brand-deep: #f26a00;
  --brand-soft: #ffb25e;
  --ink: #1b1b1f;
  --ink-strong: #101014;
  --muted: #6b7280;
  --bg: #f6f7f9;
  --card: #ffffff;
  --border: #e7e9ee;
  --radius: 20px;
  --shadow: 0 12px 40px rgba(27, 27, 31, 0.10);
}

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 233, 238, 0.7);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.brand span { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--ink-strong); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink); }
.nav-links a:hover { color: var(--brand-deep); }
.lang { display: flex; gap: 8px; align-items: center; }
.lang a { font-weight: 700; font-size: 13px; text-decoration: none; color: var(--muted); padding: 4px 8px; border-radius: 8px; }
.lang a.active { color: var(--brand-deep); background: rgba(255, 122, 30, 0.12); }
.btn {
  display: inline-block; text-decoration: none; font-weight: 800; text-align: center;
  border-radius: 999px; padding: 12px 26px; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 8px 24px rgba(242, 106, 0, 0.35); }
.btn-white { background: #fff; color: var(--brand-deep); }
.nav .btn { padding: 9px 20px; font-size: 14px; }
@media (max-width: 860px) { .nav-links .hide-m { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, #ff8a2a 0%, var(--brand) 45%, var(--brand-soft) 100%);
  padding: 148px 0 0;
}
.hero::after {
  content: ""; position: absolute; inset: auto -20% -55% -20%; height: 70%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.28), transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.pill {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
.hero .sub { margin: 18px 0 28px; font-size: 18px; max-width: 34em; color: rgba(255, 255, 255, 0.95); }
.stores { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.stores img { height: 52px; width: auto; cursor: pointer; border-radius: 8px; }
.hero-phone { position: relative; z-index: 1; margin: 0 auto; }

/* Phone frame (shared) */
.phone {
  width: min(300px, 78vw); border-radius: 36px; background: #1c1c20; padding: 10px;
  box-shadow: 0 30px 70px rgba(60, 25, 0, 0.35);
}
.phone img { border-radius: 28px; }
.hero .phone { transform: rotate(2deg); margin-bottom: -70px; }

/* ---------- Feature cards ---------- */
.cards { padding: 130px 0 40px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 4px 18px rgba(27, 27, 31, 0.04);
}
.card .emoji { font-size: 30px; }
.card h3 { margin: 10px 0 6px; font-size: 19px; font-weight: 800; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Alternating sections ---------- */
.feature { padding: 56px 0; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature .phone { margin: 0 auto; }
.kicker { color: var(--brand-deep); font-weight: 800; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.feature h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 14px; }
.feature p { color: var(--muted); font-size: 17px; max-width: 32em; }
.feature ul { margin-top: 14px; padding-left: 0; list-style: none; }
.feature li { margin: 8px 0; padding-left: 30px; position: relative; font-size: 16px; }
.feature li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--brand-deep); font-weight: 800;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  background: #fff; border: 1px solid var(--border); color: var(--ink);
  font-size: 14px; font-weight: 600; border-radius: 999px; padding: 8px 16px;
}

/* ---------- Download band ---------- */
.band {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand) 55%, var(--brand-soft));
  color: #fff; text-align: center; padding: 72px 0; margin-top: 40px;
}
.band h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.band p { margin: 12px auto 26px; max-width: 36em; color: rgba(255, 255, 255, 0.95); font-size: 17px; }
.band .stores { justify-content: center; }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal { padding: 110px 0 60px; }
.legal-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(27, 27, 31, 0.04);
  padding: clamp(24px, 5vw, 56px); max-width: 820px; margin: 0 auto;
}
.legal-card h1 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }
.legal-card h2, .legal-card h3 { margin: 26px 0 8px; font-weight: 800; }
.legal-card p { margin: 12px 0; color: #3c3f45; }
.legal-card a { color: var(--brand-deep); font-weight: 600; text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }
.legal-card ul, .legal-card ol { margin: 12px 0 12px 22px; color: #3c3f45; }

/* ---------- Footer ---------- */
footer { background: #fff; border-top: 1px solid var(--border); padding: 28px 0; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot, .foot a { color: var(--muted); font-size: 14px; }
.foot a { text-decoration: none; font-weight: 600; }
.foot a:hover { color: var(--brand-deep); }
.foot-links { display: flex; gap: 22px; }

@media (max-width: 860px) {
  .hero { padding-top: 120px; }
  .hero-grid, .feature-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero .phone { transform: none; margin: 8px auto -60px; }
  .cards { padding-top: 110px; }
  .cards-grid { grid-template-columns: 1fr; }
  .feature-grid .phone-col { order: 2; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .nav-inner { height: 60px; }
  .nav-links { gap: 10px; }
  .brand span { font-size: 19px; }
  .brand img { width: 32px; height: 32px; }
  .nav .btn { padding: 8px 14px; font-size: 13px; }
  .lang a { padding: 3px 6px; }
  .stores img { height: 46px; }
}
