/* ── Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: #C9E4D3; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: #FBF8F2;
  color: #1F2A24;
  min-height: 100vh;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
  background: rgba(251,248,242,0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,42,36,0.07);
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 27px;
  color: #2E7D4F;
  line-height: 1;
  white-space: nowrap;
}
.logo .dot-app { color: #C0392B; }
nav { display: flex; align-items: center; gap: 6px; }
nav a {
  font-weight: 700;
  font-size: 15px;
  color: #5C665F;
  padding: 7px 14px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover { background: #EEF2EF; color: #1F2A24; }
.btn-cta {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: #2E7D4F;
  padding: 10px 20px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(46,125,79,0.26);
  transition: background 0.18s, box-shadow 0.18s;
}
.btn-cta:hover { background: #24633E; box-shadow: 0 10px 22px rgba(46,125,79,0.32); }

/* ── Section wrapper ─────────────────────────────────── */
.section-wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad { padding: 80px 0; }

/* ── Section titles ──────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: #E9F3EC;
  border: 1px solid #CFE6D7;
  color: #2E7D4F;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-label {
  display: inline-block;
  background: #E9F3EC;
  border: 1px solid #CFE6D7;
  color: #2E7D4F;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-label.red { background: #FBEAE7; border-color: #F5C6BF; color: #C0392B; }
.section-h2 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 38px;
  color: #14271D;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  font-weight: 600;
  color: #5C665F;
  max-width: 540px;
  line-height: 1.6;
}

/* ── Hero ────────────────────────────────────────────── */
#hero {
  background: radial-gradient(120% 90% at 80% 0%, #FCF3E4 0%, #FBF8F2 60%);
  padding: 64px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E9F3EC;
  border: 1px solid #CFE6D7;
  color: #2E7D4F;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-h1 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 58px;
  line-height: 1.1;
  color: #14271D;
  margin-bottom: 20px;
  white-space: pre-line;
}
.hero-h1 .red { color: #C0392B; }
.hero-sub {
  font-size: 19px;
  font-weight: 600;
  color: #5C665F;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #14271D;
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 14px;
  cursor: default;
  box-shadow: 0 8px 20px rgba(20,39,29,0.22);
  margin-bottom: 18px;
}
.hero-stars {
  font-size: 14px;
  font-weight: 700;
  color: #7A857D;
}
.hero-stars .stars { color: #F6C453; font-size: 15px; }
.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,196,83,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-img {
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: 100%;
  filter: drop-shadow(0 30px 40px rgba(40,40,20,0.18));
}
.deco-sq {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  z-index: 0;
}

/* ── Trust strip ─────────────────────────────────────── */
.trust-strip {
  background: #14271D;
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-val {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 32px;
  color: #7FC79B;
  line-height: 1.1;
}
.trust-item .trust-val { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 32px; color: #7FC79B; line-height: 1.1; }
.trust-value {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 32px;
  color: #7FC79B;
  line-height: 1.1;
}
.trust-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #A9C0B2;
  margin-top: 4px;
}

/* ── So geht's ───────────────────────────────────────── */
#so-gehts { padding: 80px 0; }
.steps-intro { text-align: center; margin-bottom: 48px; }
.steps-intro .section-sub { margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: #fff;
  border: 1px solid #EDE6DA;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(40,40,20,0.05);
  padding: 32px 28px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #E9F3EC;
  color: #2E7D4F;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 22px;
  border-radius: 12px;
  margin-bottom: 18px;
}
.step-card h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 20px;
  color: #14271D;
  margin-bottom: 10px;
}
.step-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 20px;
  color: #14271D;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  font-weight: 600;
  color: #5C665F;
  line-height: 1.6;
}
.step-card p { font-size: 15px; font-weight: 600; color: #5C665F; line-height: 1.6; }

/* ── Funktionen ──────────────────────────────────────── */
#funktionen { padding: 80px 0; background: #F5F1EA; }
.features-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.features-img-panel {
  background: linear-gradient(160deg, #FBF6EE, #F1E7D6);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-img-panel img { border-radius: 16px; max-width: 100%; }
.features-img { border-radius: 16px; max-width: 100%; }
.features-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.fi-cart  { background: #FBEFD8; }
.fi-link  { background: #E9F3EC; }
.fi-secret{ background: #FBEAE7; }
.fi-bell  { background: #E6EEFB; }
.feature-item h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 17px;
  color: #14271D;
  margin-bottom: 5px;
}
.feature-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 17px;
  color: #14271D;
  margin-bottom: 5px;
}
.feature-item p { font-size: 14.5px; font-weight: 600; color: #5C665F; line-height: 1.55; }
.feature-desc { font-size: 14.5px; font-weight: 600; color: #5C665F; line-height: 1.55; }

/* ── Anlässe ─────────────────────────────────────────── */
#anlaesse { padding: 80px 0; }
.anlaesse-intro { text-align: center; margin-bottom: 48px; }
.anlaesse-intro .section-sub { margin: 0 auto; }
.anlaesse-grid,
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.anlass-card,
.occasion-card {
  border-radius: 20px;
  padding: 22px 20px;
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 16px;
}
.anlass-card:hover,
.occasion-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(40,40,20,0.1); }
.anlass-card img,
.occasion-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  flex-shrink: 0;
}
.anlass-text { display: flex; flex-direction: column; }
.anlass-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 18px;
  color: #14271D;
  margin-bottom: 5px;
}
.occasion-card h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 18px;
  color: #14271D;
  margin-bottom: 5px;
}
.anlass-desc { font-size: 14px; font-weight: 600; color: #5C665F; line-height: 1.55; }
.occasion-card p { font-size: 14px; font-weight: 600; color: #5C665F; line-height: 1.55; }
.ac-weihnachten  { background: #FBEFE9; }
.ac-geburtstag   { background: #FBF6E4; }
.ac-freundeskreis{ background: #F0F4EA; }
.ac-firma        { background: #EEF1F5; }
.ac-ostern       { background: #F3EFF6; }
.ac-sonstiges    { background: #EBF1ED; }

/* ── Download CTA ────────────────────────────────────── */
#download { padding: 80px 0; }
.download-card,
.dl-card {
  background: linear-gradient(150deg, #2E7D4F, #1C5A38);
  border-radius: 30px;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.dl-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.25);
}
.dl-h2 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.dl-sub { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.78); margin-bottom: 28px; }
.dl-soon-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: default;
}
.dl-img { text-align: center; }
.dl-img img { max-width: 220px; margin: 0 auto; filter: drop-shadow(0 20px 32px rgba(0,0,0,0.25)); }

/* ── Footer ──────────────────────────────────────────── */
.site-footer { background: #14271D; color: #fff; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 54px 28px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 26px; margin-bottom: 12px; }
.footer-logo span { color: #7FC79B; }
.footer-tagline { font-size: 15px; line-height: 1.6; color: #A9C0B2; font-weight: 600; margin: 0 0 18px; max-width: 320px; }
.footer-store-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 14px; border-radius: 11px;
  background: rgba(255,255,255,0.08); color: #fff;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 13.5px;
  cursor: default; white-space: nowrap; flex-shrink: 0;
}
.footer-col-title { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 15px; color: #7FC79B; margin-bottom: 14px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-grid ul li a { font-size: 15px; font-weight: 700; color: #C7D5CC; transition: color 0.15s; }
.footer-grid ul li a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: #88A595; font-weight: 600; }

/* ── Kontakt page ────────────────────────────────────── */
.kontakt-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.kontakt-wrap > h1 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 40px;
  color: #14271D;
  margin-bottom: 8px;
}
.kontakt-wrap > .kontakt-sub {
  font-size: 17px;
  font-weight: 600;
  color: #5C665F;
  margin-bottom: 44px;
}
.kontakt-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 30px; align-items: start; }
.form-card { background: #fff; border: 1px solid #EDE6DA; border-radius: 24px; padding: 36px; box-shadow: 0 18px 40px rgba(40,40,20,0.06); }
.form-card h2 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 22px;
  color: #14271D;
  margin-bottom: 24px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 700; color: #3A4A40; }
.form-label { display: block; font-size: 12px; font-weight: 800; color: #8A938C; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 7px; }
.form-input, .form-select, .form-textarea,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border-radius: 13px; border: 2px solid #E7ECE8; background: #FBFCFB;
  padding: 0 15px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px;
  color: #28332C; outline: none; transition: border-color 0.15s;
}
.form-input, .form-select,
.form-group input,
.form-group select { height: 50px; }
.form-textarea,
.form-group textarea { padding: 13px 15px; resize: vertical; line-height: 1.5; }
.form-input:focus, .form-select:focus, .form-textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #2E7D4F; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px; padding: 0 30px; border: none; border-radius: 14px;
  background: #2E7D4F; color: #fff; font-family: 'Baloo 2', cursive;
  font-weight: 700; font-size: 17px; cursor: pointer;
  box-shadow: 0 10px 22px rgba(46,125,79,0.26); transition: background 0.15s;
  width: 100%; margin-top: 8px;
}
.btn-submit:hover { background: #246338; }
.form-datenschutz { font-size: 13px; color: #9AA39C; font-weight: 600; margin-top: 14px; text-align: center; }
.form-datenschutz a { color: #2E7D4F; font-weight: 800; text-decoration: underline; }
.cf-turnstile { margin: 16px 0; }
.form-error { background: #FBEAE7; color: #C0392B; border-radius: 10px; padding: 12px 16px; font-size: 14px; font-weight: 700; margin-bottom: 18px; border: 1px solid #E8C4BF; }
.form-success { text-align: center; padding: 24px 12px; }
.form-success img { width: 140px; margin: 0 auto 14px; }
.form-success h2, .form-success h3 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 26px; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: #6F7A72; font-weight: 600; max-width: 380px; margin: 0 auto 20px; }
.form-success a { display: inline-flex; align-items: center; height: 46px; padding: 0 22px; border-radius: 12px; background: #EEF2EF; color: #2E7D4F; font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 15px; }

/* Info card (Kontakt sidebar) */
.info-card,
.info-card-dark { background: #14271D; border-radius: 22px; padding: 26px; color: #fff; }
.info-card h3,
.info-card-dark h3 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 19px; margin-bottom: 16px; color: #fff; }
.info-item,
.info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.info-item:last-child,
.info-row:last-child { margin-bottom: 0; }
.info-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.info-label { font-size: 12px; color: #88A595; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.info-val { font-weight: 800; font-size: 15px; color: #A9C0B2; margin-top: 2px; }
.info-card-warm { background: #FBF6EE; border: 1px solid #EDE0CC; border-radius: 22px; padding: 22px; }
.info-card-warm h3 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 17px; margin-bottom: 8px; }
.info-card-warm p { font-size: 14px; color: #6F7A72; font-weight: 600; line-height: 1.5; }
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.faq-tip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; padding: 18px 16px; margin-top: 24px;
}
.faq-tip-label { font-size: 12px; font-weight: 700; color: #7FC79B; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.faq-tip-text { font-size: 13.5px; font-weight: 600; color: #A9C0B2; line-height: 1.6; }

/* ── Legal pages ─────────────────────────────────────── */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 28px 90px;
}
.legal-wrap h1 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 40px;
  color: #14271D;
  margin-bottom: 8px;
}
.legal-date,
.legal-updated {
  font-size: 14px;
  color: #9AA39C;
  font-weight: 700;
  margin-bottom: 36px;
}
.legal-sections { display: flex; flex-direction: column; gap: 26px; font-size: 16px; line-height: 1.65; color: #41504A; font-weight: 500; }
.legal-sections h2 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 20px; color: #1F2A24; margin-bottom: 8px; }
.legal-wrap h2 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 21px;
  color: #14271D;
  margin: 36px 0 10px;
}
.legal-wrap p, .legal-wrap li {
  font-size: 15.5px;
  font-weight: 600;
  color: #4A5A50;
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-wrap ul, .legal-wrap ol {
  margin-left: 22px;
  margin-bottom: 10px;
}
.legal-wrap a { color: #2E7D4F; text-decoration: underline; }

/* ── Hamburger & Mobile Nav ───────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: #EEF2EF; }
.nav-hamburger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: #1F2A24;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 74px;
  left: 0; right: 0; bottom: 0;
  background: rgba(20,39,29,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-inner {
  background: #fff;
  padding: 8px 24px 24px;
  border-bottom: 1px solid #EDE6DA;
  box-shadow: 0 8px 30px rgba(20,39,29,0.14);
}
.mobile-nav-link {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 18px;
  color: #1F2A24;
  padding: 13px 0;
  border-bottom: 1px solid #F0EDE7;
  transition: color 0.15s;
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link:hover { color: #2E7D4F; }
.mobile-nav-cta-wrap { padding-top: 16px; }
.mobile-cta-btn {
  display: flex !important;
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .features-grid, .dl-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 40px; }
  .steps-grid, .occasions-grid, .anlaesse-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-grid-2, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-store-btns { flex-direction: column; }
}
@media (max-width: 768px) {
  /* Desktop nav + CTA hidden, hamburger visible */
  #mainNav { display: none; }
  .desktop-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 38px; }
  .hero-img-wrap { order: -1; }
  .hero-img { max-width: 280px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-img-panel { order: -1; }
  .anlaesse-grid, .occasions-grid { grid-template-columns: 1fr 1fr; }
  .download-card, .dl-card { padding: 40px 28px; }
  .dl-grid { grid-template-columns: 1fr; }
  .dl-img { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-store-btns { flex-direction: row; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-row, .form-grid-2 { grid-template-columns: 1fr; }
  .section-h2 { font-size: 28px; }
  .legal-wrap h1, .kontakt-wrap > h1 { font-size: 30px; }
}
@media (max-width: 600px) {
  .hero-h1 { font-size: 32px; }
  .steps-grid, .occasions-grid, .anlaesse-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .section-wrap { padding: 0 16px; }
  .footer-store-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .anlaesse-grid, .occasions-grid { grid-template-columns: 1fr; }
  .section-wrap { padding: 0 16px; }
}
