
:root {
  --bg: #f4fbff;
  --bg-soft: #edf7fc;
  --surface: #ffffff;
  --surface-2: #f8fbfe;
  --text: #14253a;
  --muted: #667b8f;
  --line: #d7e7f0;
  --accent: #0d6efd;
  --accent-2: #20c4f4;
  --accent-dark: #0b4fb8;
  --success: #0d8f73;
  --shadow: 0 18px 44px rgba(20, 37, 58, 0.08);
  --shadow-soft: 0 10px 24px rgba(20, 37, 58, 0.05);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #edf7fc 0%, #f8fcff 32%, #ffffff 100%);
  line-height: 1.65;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215,231,240,0.9);
}
.nav {
  min-height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand-mini {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; color: var(--text);
}
.brand-mini img {
  width: 42px; height: 42px; border-radius: 12px;
  box-shadow: 0 10px 22px rgba(13,110,253,.14);
}
.nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; font-size: .97rem; }
.nav-links a { color: var(--text); opacity: .9; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 18px; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff !important; font-weight: 800; box-shadow: 0 14px 28px rgba(13,110,253,.18);
}
.nav-cta:hover { text-decoration: none; filter: brightness(.98); }
.hero { padding: 42px 0 30px; }
.brand-banner-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid var(--line); border-radius: 34px; padding: 24px;
  box-shadow: var(--shadow);
}
.brand-banner-card img { width: 100%; border-radius: 24px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center;
  margin-top: 30px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 999px; font-size: .92rem; font-weight: 750;
  background: #e2f4fb; color: #0b6a96; border: 1px solid #cfe7f4;
}
h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  line-height: 1.02; letter-spacing: -.045em;
}
.lead { font-size: 1.12rem; color: var(--muted); margin: 0 0 24px; max-width: 690px; }
.hero-points {
  display: grid; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none;
}
.hero-points li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--text);
}
.hero-points li::before {
  content: "✓"; flex: 0 0 auto; width: 24px; height: 24px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #e8f7fb; color: var(--success); font-weight: 800; margin-top: 1px;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 16px; font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #fff;
  border: 1px solid transparent; box-shadow: 0 14px 28px rgba(13,110,253,.18);
}
.button.secondary {
  background: #fff; color: var(--accent); border-color: var(--line); box-shadow: none;
}
.button:hover { text-decoration: none; transform: translateY(-1px); }
.appstore-badge {
  display: inline-flex; align-items: center; gap: 14px;
  min-height: 58px; padding: 10px 18px; border-radius: 18px;
  color: #fff; background: linear-gradient(135deg, #09131f 0%, #10243e 100%);
  box-shadow: 0 18px 34px rgba(16,36,62,.22);
}
.appstore-badge .apple {
  font-size: 1.7rem; line-height: 1;
}
.appstore-badge .small-top { display:block; font-size:.73rem; opacity:.86; font-weight:600; line-height:1.1; }
.appstore-badge .big { display:block; font-size:1.15rem; font-weight:800; line-height:1.1; }
.appstore-badge:hover { text-decoration: none; transform: translateY(-1px); }
.hero-note { font-size: .94rem; color: var(--muted); margin-top: 14px; }
.hero-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
  border: 1px solid var(--line); border-radius: 30px; padding: 18px; box-shadow: var(--shadow);
}
.panel-top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px;
}
.panel-top strong { font-size: 1rem; }
.status-chip {
  padding: 7px 12px; border-radius: 999px; font-size: .88rem; font-weight: 750;
  background: #e7fbf6; color: var(--success); border: 1px solid #cdeee4;
}
.hero-shot {
  background: linear-gradient(180deg,#f7fbfe 0%,#edf7fc 100%);
  border: 1px solid var(--line); border-radius: 24px; padding: 14px;
}
.hero-shot img { width: auto; max-height: 620px; margin: 0 auto; border-radius: 20px; box-shadow: 0 18px 30px rgba(20,37,58,.10); }
.metrics-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; }
.metric-mini {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px; box-shadow: var(--shadow-soft);
}
.metric-mini span { display: block; color: var(--muted); font-size: .9rem; margin-bottom: 4px; }
.metric-mini strong { font-size: 1rem; }
.section { padding: 74px 0; }
.section h2 {
  margin: 0 0 14px; font-size: clamp(1.85rem,4vw,2.8rem); line-height:1.08; letter-spacing:-.035em;
}
.section-intro { max-width: 830px; color: var(--muted); font-size: 1.06rem; margin: 0 0 30px; }
.why-grid, .features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.info-card, .feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow-soft);
}
.info-card h3, .feature-card h3 { margin: 12px 0 8px; font-size: 1.14rem; }
.info-card p, .feature-card p { margin: 0; color: var(--muted); }
.icon-badge { font-size: 1.75rem; }
.shot-list { display: grid; gap: 34px; }
.shot-row {
  display: grid; grid-template-columns: 390px 1fr; gap: 30px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 24px; box-shadow: var(--shadow);
}
.shot-row:nth-child(even) { grid-template-columns: 1fr 390px; }
.shot-row:nth-child(even) .shot-copy { order: 1; }
.shot-row:nth-child(even) .shot-frame { order: 2; }
.shot-frame {
  background: linear-gradient(180deg, #f8fbfd 0%, #edf7fc 100%);
  border: 1px solid var(--line); border-radius: 24px; padding: 14px; display: flex; justify-content: center;
}
.shot-frame img {
  width: auto; max-height: 700px; border-radius: 20px; box-shadow: 0 16px 28px rgba(20,37,58,.08);
}
.shot-copy h3 {
  margin: 0 0 12px; font-size: clamp(1.45rem,3vw,2rem); line-height: 1.12; letter-spacing: -.03em;
}
.shot-copy p { margin: 0 0 14px; color: var(--muted); }
.shot-copy ul { margin: 0; padding-left: 22px; color: var(--muted); }
.notice {
  background: linear-gradient(180deg,#fff 0%,#fbfdff 100%);
  border: 1px solid var(--line); border-radius: 30px; padding: 28px; box-shadow: var(--shadow);
}
.notice ul { margin: 14px 0 0; padding-left: 22px; color: var(--muted); }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 750; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; color: var(--accent);
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 20px 18px; color: var(--muted); }
.cta-card {
  background: linear-gradient(135deg, #0f5ddd 0%, #21c4f4 100%);
  color: #fff; border-radius: 34px; padding: 34px; box-shadow: 0 22px 46px rgba(13,110,253,.24);
}
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; }
.cta-card h2 { color: #fff; margin-bottom: 12px; }
.cta-card p { margin: 0; opacity: .94; font-size: 1.05rem; }
.cta-points { display: grid; gap: 10px; margin-top: 20px; }
.cta-points span { display: flex; gap: 10px; align-items: center; font-weight: 600; }
.cta-points span::before {
  content: "•"; font-size: 1.2rem; line-height: 1; opacity: .95;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
.cta-card .appstore-badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); }
.cta-card .button.secondary { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.24); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.contact-card, .form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 26px; box-shadow: var(--shadow);
}
.contact-card p, .form-card p { color: var(--muted); }
.contact-box {
  background: #eef8fc; border: 1px solid var(--line); border-radius: 18px; padding: 18px; margin: 18px 0;
}
.form-row { display: grid; gap: 8px; margin-bottom: 16px; }
label { font-weight: 700; }
input, textarea {
  width: 100%; padding: 13px 14px; border-radius: 14px; border: 1px solid var(--line); background: #fff; font: inherit; color: var(--text);
}
textarea { min-height: 150px; resize: vertical; }
.small { font-size: .94rem; color: var(--muted); }
.site-footer { margin-top: 30px; border-top: 1px solid var(--line); background: #fff; }
.footer-row {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 26px 0; color: var(--muted);
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.page { padding: 56px 0 80px; }
.page-card {
  max-width: 920px; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: clamp(24px,5vw,42px); box-shadow: var(--shadow);
}
.page-card h1 { font-size: clamp(2rem,4vw,3rem); }
.page-card h2 { margin-top: 28px; font-size: 1.35rem; }
.page-card p, .page-card li { color: var(--muted); }
@media (max-width: 980px) {
  .hero-grid, .why-grid, .features-grid, .contact-grid, .cta-grid, .shot-row, .shot-row:nth-child(even) { grid-template-columns: 1fr; }
  .shot-row:nth-child(even) .shot-copy, .shot-row:nth-child(even) .shot-frame { order: unset; }
  .hero-shot img, .shot-frame img { max-height: 620px; }
}
@media (max-width: 760px) {
  .nav { flex-direction: column; align-items: flex-start; padding: 14px 0; }
  .nav-links { gap: 14px; }
  .container { width: min(100% - 28px, 1180px); }
  .brand-banner-card { padding: 16px; }
  .hero-panel, .notice, .contact-card, .form-card, .cta-card { padding: 20px; }
  .metrics-mini { grid-template-columns: 1fr; }
}


/* v5 compact screenshot showcase */
.shot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.shot-row {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.shot-row:nth-child(2),
.shot-row:nth-child(4),
.shot-row:nth-child(6) {
  transform: translateY(34px);
}
.shot-frame {
  background: linear-gradient(180deg, #f8fbfd 0%, #edf7fc 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 12px;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.shot-frame img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(20,37,58,.08);
}
.shot-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.15;
}
.shot-copy p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.98rem;
}
.shot-copy ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.96rem;
}
.shot-copy ul li + li {
  margin-top: 4px;
}
.screenshots-note {
  margin-top: 56px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
}
@media (max-width: 980px) {
  .shot-list {
    grid-template-columns: 1fr;
  }
  .shot-row:nth-child(2),
  .shot-row:nth-child(4),
  .shot-row:nth-child(6) {
    transform: none;
  }
  .shot-frame img {
    max-height: 600px;
  }
}


/* v6 added content sections */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 850;
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.audience-grid,
.limits-grid,
.trust-grid,
.support-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card,
.limits-card,
.trust-card,
.support-tip-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.audience-card h3,
.limits-card h3,
.trust-card h3,
.support-tip-card h3 {
  margin: 10px 0 8px;
  font-size: 1.12rem;
}

.audience-card p,
.limits-card p,
.trust-card p,
.support-tip-card p {
  margin: 0;
  color: var(--muted);
}

.price-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbff 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-strip h2 {
  margin-bottom: 10px;
}

.price-strip p {
  color: var(--muted);
  margin: 0;
}

.price-badge {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 18px 22px;
  border-radius: 22px;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(13,110,253,.18);
}

.price-badge span {
  display: block;
  font-size: .92rem;
  opacity: .9;
}

.price-badge strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.version-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.version-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.version-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: #0b6a96;
  background: #e2f4fb;
  border: 1px solid #cfe7f4;
  font-weight: 800;
}

.version-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .audience-grid,
  .limits-grid,
  .trust-grid,
  .support-tips-grid,
  .price-strip,
  .version-list {
    grid-template-columns: 1fr;
  }

  .price-badge {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* PHP contact form spam honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}


/* v10 official Apple App Store badges */
.appstore-badge-official {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.appstore-badge-official img {
  display: block;
  height: 58px;
  width: auto;
}
.cta-actions .appstore-badge-official img {
  height: 60px;
}
@media (max-width: 760px) {
  .appstore-badge-official img,
  .cta-actions .appstore-badge-official img {
    height: 54px;
  }
}


/* v11: kompaktere Abstände + Logo-Banner enger */
.hero {
  padding: 26px 0 18px;
}

.brand-banner-card {
  padding: 10px;
}

.brand-banner-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.hero-grid {
  margin-top: 18px;
  gap: 28px;
}

.section {
  padding: 52px 0;
}

.section-intro {
  margin: 0 0 22px;
}

.why-grid,
.features-grid,
.audience-grid,
.limits-grid,
.trust-grid,
.support-tips-grid,
.faq-list,
.shot-list {
  gap: 16px;
}

.step-card,
.info-card,
.feature-card,
.audience-card,
.limits-card,
.trust-card,
.support-tip-card,
.faq-item,
.shot-row {
  box-shadow: var(--shadow-soft);
}

.screenshots-note {
  margin-top: 28px;
}

@media (max-width: 760px) {
  .brand-banner-card img {
    max-height: 160px;
  }

  .section {
    padding: 40px 0;
  }

  .hero-grid {
    margin-top: 14px;
    gap: 20px;
  }
}


/* v12: Logo vollständig sichtbar, Logo-Bereich eleganter, Mini-Metriken entfernt */
.brand-banner-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.brand-banner-card img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(20, 37, 58, 0.08);
  border: 1px solid rgba(215, 231, 240, 0.72);
  background: #ffffff;
}

.hero {
  padding-top: 22px;
}

.hero-grid {
  margin-top: 24px;
}

.hero-panel {
  padding-bottom: 18px;
}

@media (max-width: 760px) {
  .brand-banner-card img {
    max-height: none;
    border-radius: 18px;
  }
}


/* v13: Logo-Bereich ohne Kasten, mit weichem Auslaufen zum Hintergrund */
.hero {
  padding-top: 18px;
}

.brand-banner-card {
  padding: 0 !important;
  margin: 0 0 8px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.brand-banner-card img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-grid {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 12px;
  }

  .hero-grid {
    margin-top: 10px;
  }
}


/* v14: Logo-Bereich wirklich kompakt und ohne Kasten */
.hero {
  padding-top: 6px !important;
  padding-bottom: 18px !important;
}

.hero > .container {
  padding-top: 0 !important;
}

.brand-banner-card {
  margin: 0 0 2px 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.brand-banner-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-grid {
  margin-top: 0 !important;
  gap: 20px !important;
  align-items: start !important;
}

.eyebrow {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 2px !important;
    padding-bottom: 14px !important;
  }

  .hero-grid {
    margin-top: 0 !important;
    gap: 16px !important;
  }
}


/* v15: Kontaktformular-Spamschutz */
.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.checkbox-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

.checkbox-row input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}
