/* Autrust — Marketing-Site (Mix: heller Grundton, dunkle Akzent-Sektionen) */
:root {
  color-scheme: light;
  --bg: #f7f7f8;
  --card: #ffffff;
  --ink: #111114;
  --ink-2: #4b4b52;
  --muted: #7c7c85;
  --red: #e02d2d;
  --dark: #0b0b0d;
  --dark-card: #17171a;
  --dark-ink: #f4f4f5;
  --dark-muted: #9d9da6;
  --line: #e7e7ea;
  --radius: 18px;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Logo */
.brand { font-weight: 900; letter-spacing: .28em; font-size: 19px; text-decoration: none; white-space: nowrap; }
.brand .r { color: var(--red); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,247,248,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 26px; height: 60px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav .cta { margin-left: 6px; }
@media (max-width: 720px) { .nav-links a:not(.keep) { display: none; } }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer; border: 0;
  font-size: 15.5px; font-weight: 700; line-height: 1;
  padding: 14px 22px; border-radius: 999px;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #c82424; }
.btn-ghost { background: transparent; color: inherit; border: 1.5px solid currentColor; }

/* Hero (dunkel) */
.hero { background: var(--dark); color: var(--dark-ink); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: 72px 0 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dark-ink); background: #232327; border: 1px solid #2f2f34;
  padding: 8px 14px; border-radius: 999px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
h1 {
  font-size: clamp(34px, 5.2vw, 56px); line-height: 1.06; letter-spacing: -.02em;
  font-weight: 900; margin: 22px 0 14px;
}
.hero p.sub { font-size: 18px; color: var(--dark-muted); max-width: 34em; margin: 0 0 26px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 56px; }
.hero-chips span {
  font-size: 13px; color: var(--dark-muted);
  border: 1px solid #2c2c31; border-radius: 999px; padding: 7px 13px;
}
.hero-phone { align-self: end; display: flex; justify-content: center; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 52px; gap: 36px; }
  .hero-phone { order: 2; }
}

/* iPhone-Rahmen */
.phone {
  width: min(300px, 78vw);
  border-radius: 46px; border: 9px solid #222226; background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  overflow: hidden; position: relative;
}
.phone img { width: 100%; }
.phone.cut { border-bottom: 0; border-radius: 46px 46px 0 0; }

/* Warteliste */
.waitlist { display: flex; gap: 10px; flex-wrap: wrap; max-width: 460px; }
.waitlist input {
  flex: 1 1 220px; font-size: 15.5px; padding: 14px 18px;
  border-radius: 999px; border: 1.5px solid #34343a; background: #1c1c20; color: #fff;
  outline: none;
}
.waitlist input::placeholder { color: #77777f; }
.waitlist input:focus { border-color: var(--red); }
.waitlist.on-light input { background: #fff; color: var(--ink); border-color: var(--line); }
.wl-note { font-size: 12.5px; color: var(--dark-muted); margin-top: 10px; }
.wl-success { font-weight: 700; color: #3ddc84; }

/* Sektionen */
section.block { padding: 84px 0; }
.kicker {
  font-size: 12.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin: 0 0 10px;
}
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.12; letter-spacing: -.015em; font-weight: 900; margin: 0 0 14px; }
.lead { font-size: 17px; color: var(--ink-2); max-width: 38em; margin: 0; }

/* Feature-Zeilen */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 56px 0; }
.feature .phone { justify-self: center; }
.feature ul { padding: 0; margin: 22px 0 0; list-style: none; }
.feature li { padding-left: 30px; position: relative; margin-bottom: 12px; color: var(--ink-2); }
.feature li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--red);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.6 11.6 3.4 8.4l1.2-1.2 2 2 4.8-4.8 1.2 1.2z"/><circle cx="8" cy="8" r="7" fill="none" stroke="black" stroke-width="1.6"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.6 11.6 3.4 8.4l1.2-1.2 2 2 4.8-4.8 1.2 1.2z"/><circle cx="8" cy="8" r="7" fill="none" stroke="black" stroke-width="1.6"/></svg>') center/contain no-repeat;
}
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .feature .phone { order: -1; }
}

/* Offizielles Tap-to-Pay-Video (Apple-Asset, unverändert skaliert) */
.ttp-video {
  width: min(440px, 90vw);
  border-radius: 24px;
  justify-self: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

/* Dunkle Sektion */
.dark { background: var(--dark); color: var(--dark-ink); }
.dark .lead, .dark .feature li { color: var(--dark-muted); }
.dark h2 { color: var(--dark-ink); }

/* Karten */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.dark .card { background: var(--dark-card); border-color: #26262b; }
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; font-size: 14.5px; color: var(--muted); }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }

/* Preis */
.price-card {
  max-width: 480px; margin: 40px auto 0; text-align: center;
  background: var(--dark); color: var(--dark-ink);
  border-radius: 26px; padding: 40px 34px;
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}
.price-old { color: var(--dark-muted); text-decoration: line-through; font-size: 19px; }
.price-now { font-size: 54px; font-weight: 900; letter-spacing: -.02em; line-height: 1; margin: 6px 0 2px; }
.price-now small { font-size: 17px; font-weight: 600; color: var(--dark-muted); letter-spacing: 0; }
.price-tag {
  display: inline-block; background: var(--red); color: #fff; font-size: 12.5px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.price-list { list-style: none; padding: 0; margin: 24px 0 26px; text-align: left; }
.price-list li { padding: 9px 0 9px 30px; position: relative; border-bottom: 1px solid #232327; font-size: 15px; color: #d6d6db; }
.price-list li:last-child { border-bottom: 0; }
.price-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--red); font-weight: 800; }

/* Blog */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.post {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; text-decoration: none; display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.post:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.post .tag { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.post h3 { margin: 0; font-size: 18px; line-height: 1.3; }
.post p { margin: 0; font-size: 14px; color: var(--muted); flex: 1; }
.post .more { font-size: 14px; font-weight: 700; color: var(--ink); }
@media (max-width: 860px) { .posts { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 760px; margin: 36px auto 0; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 22px; margin-bottom: 10px;
}
.faq summary { font-weight: 700; font-size: 16px; padding: 14px 0; cursor: pointer; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 12px; font-size: 22px; color: var(--red); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 16px; color: var(--ink-2); font-size: 15px; }

/* Footer */
footer { background: var(--dark); color: var(--dark-muted); padding: 44px 0 60px; font-size: 14px; }
footer .cols { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; margin-top: 14px; }
footer a { color: var(--dark-muted); text-decoration: none; }
footer a:hover { color: var(--dark-ink); }
.legal-small { font-size: 12px; color: #6c6c74; margin-top: 20px; }

/* Blog-Artikel */
.article { max-width: 720px; margin: 0 auto; padding: 56px 20px 80px; }
.article h1 { font-size: clamp(30px, 4.5vw, 42px); }
.article .meta { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.article h2 { font-size: 24px; margin-top: 40px; }
.article h3 { font-size: 19px; margin-top: 28px; }
.article p, .article li { font-size: 16.5px; color: #2c2c31; }
.article blockquote {
  border-left: 3px solid var(--red); margin: 24px 0; padding: 6px 0 6px 20px;
  color: var(--ink-2); font-size: 16.5px;
}
.cta-box {
  background: var(--dark); color: var(--dark-ink); border-radius: 20px;
  padding: 30px; margin: 44px 0 0;
}
.cta-box h3 { margin: 0 0 8px; font-size: 20px; }
.cta-box p { color: var(--dark-muted) !important; font-size: 15px !important; margin: 0 0 18px; }
