/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* ---------- Tokens ---------- */
:root {
  --bg: #FFFFFF;
  --ink: #0B1F3A;        /* deep navy */
  --ink-2: #2A3B57;
  --muted: #5C6B85;
  --line: #E6E9F0;
  --soft: #F4F6FB;
  --accent: #FF5C39;     /* warm coral */
  --accent-ink: #B43A1E;
  --ok: #0FA968;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,31,58,.06), 0 2px 8px rgba(11,31,58,.04);
  --shadow-md: 0 6px 24px rgba(11,31,58,.08);
  --shadow-lg: 0 20px 60px rgba(11,31,58,.18);

  --max: 1120px;
  --pad: clamp(20px, 4vw, 40px);

  --fs-h1: clamp(2.25rem, 1.6rem + 3.2vw, 4.25rem);
  --fs-h2: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
  --fs-h3: 1.25rem;
  --fs-lead: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
}

/* ---------- Base ---------- */
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-ink);
  margin-bottom: 14px;
}

.section { padding: clamp(64px, 8vw, 120px) 0; }
.section__title {
  font-size: var(--fs-h2);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 48px;
}

.accent { color: var(--accent); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,92,57,.35);
}
.btn--primary:hover { transform: translateY(-1px); background: #ff4a23; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--text {
  background: transparent;
  color: var(--ink-2);
  padding: 12px 8px;
}
.btn--text:hover { color: var(--accent); }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--sm { padding: 8px 14px; font-size: 0.85rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--accent);
  display: inline-block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 120px) 0 clamp(64px, 10vw, 140px);
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
/* Animated mesh background */
.hero__mesh {
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(600px 400px at 15% 20%, rgba(255,92,57,.18), transparent 60%),
    radial-gradient(500px 400px at 85% 30%, rgba(11,31,58,.10), transparent 60%),
    radial-gradient(700px 500px at 60% 90%, rgba(255,138,110,.14), transparent 60%),
    radial-gradient(400px 300px at 20% 80%, rgba(15,169,104,.07), transparent 60%);
  filter: blur(20px);
  animation: mesh 18s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mesh {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(2%, -1.5%) scale(1.05); }
  66%      { transform: translate(-1.5%, 2%) scale(.97); }
}
/* Grid overlay (very subtle) */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(11,31,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,58,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero__inner { max-width: 880px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(15,169,104,.18);
}
.hero__title {
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero__lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: 36px;
}
.hero__price {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.price {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.price--accent {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  position: relative;
}
.price--accent::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent 60%, rgba(255,92,57,.25));
  pointer-events: none;
}
.price__num {
  font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.price--accent .price__num { color: var(--accent); }
.price__label {
  font-size: 0.95rem;
  color: var(--muted);
}
.price--accent .price__label { color: rgba(255,255,255,.75); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.hero__bullets li {
  position: relative;
  padding-left: 22px;
}
.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Problem / Stats ---------- */
.problem { background: var(--soft); }
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.stat__num {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.stat__label { color: var(--ink-2); }

/* ---------- Steps ---------- */
.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step p { color: var(--ink-2); }

/* ---------- Features ---------- */
.features { background: var(--soft); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features__grid { grid-template-columns: 1fr; } }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.feature--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--ink) 0%, #1a3358 100%);
  color: #fff;
  border-color: transparent;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.feature--wide__copy { min-width: 0; }
.feature--wide h3 { color: #fff; font-size: 1.5rem !important; margin-bottom: 12px !important; }
.feature--wide p { color: rgba(255,255,255,0.85) !important; max-width: 60ch; line-height: 1.6 !important; }
.feature--wide::before { background: var(--accent) !important; }
@media (max-width: 900px) {
  .feature--wide { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
}

/* ---------- PageSpeed gauges ---------- */
.pagespeed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 14px 14px;
  position: relative;
}
.pagespeed::before {
  content: "↗ pagespeed.web.dev · Mobil";
  position: absolute;
  top: -10px; left: 16px;
  background: var(--ink);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.pagespeed__item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.pagespeed__gauge {
  --score: 100;
  --color: #0CCE6B;
  width: 64px; height: 64px;
  border-radius: 50%;
  background:
    conic-gradient(var(--color) calc(var(--score) * 1%), rgba(12,206,107,0.15) 0);
  display: grid; place-items: center;
  position: relative;
}
.pagespeed__gauge::before {
  content: "";
  position: absolute; inset: 5px;
  border-radius: 50%;
  background: #0E2C2A;
}
.pagespeed__num {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color);
  font-feature-settings: 'tnum';
}
.pagespeed__label {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .pagespeed { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pagespeed__gauge { width: 56px; height: 56px; }
  .pagespeed__num { font-size: 1.1rem; }
}
.feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature h3::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: 0.18em;
}
.feature p { color: var(--ink-2); font-size: 0.95rem; }

/* ---------- Galerie ---------- */
.gallery {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(255,92,57,.06), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(11,31,58,.04), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.gallery__lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 56ch;
  margin: -32px 0 56px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  perspective: 2000px;
}
@media (max-width: 720px) {
  .gallery__grid { grid-template-columns: 1fr; gap: 24px; }
}
.gallery__note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* Browser mockup card */
.mock {
  --rot: 0deg;
  --ty: 0px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotate(var(--rot)) translateY(var(--ty));
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease, opacity .8s ease;
  opacity: 0;
  animation: mockIn .9s cubic-bezier(.2,.8,.2,1) forwards;
  animation-play-state: paused;
}
.mock.is-in { animation-play-state: running; }
@keyframes mockIn {
  from { opacity: 0; transform: rotate(var(--rot)) translateY(calc(var(--ty) + 28px)); }
  to   { opacity: 1; transform: rotate(var(--rot)) translateY(var(--ty)); }
}
.mock:nth-child(1) { --rot: -1deg; }
.mock:nth-child(2) { --rot: 1deg; --ty: 20px; }
.mock:nth-child(3) { --rot: 0.5deg; }
.mock:nth-child(4) { --rot: -0.8deg; --ty: 20px; }
.mock:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.01);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.mock__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f4f5f9;
  border-bottom: 1px solid var(--line);
}
.mock__chrome span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d6dae3;
}
.mock__chrome span:nth-child(1) { background: #ff5f57; }
.mock__chrome span:nth-child(2) { background: #febc2e; }
.mock__chrome span:nth-child(3) { background: #28c840; }
.mock__url {
  flex: 1;
  margin-left: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.mock__body {
  padding: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mock__body--dark {
  background: #0B1F3A;
  color: #fff;
}
.mock__body--warm {
  background: linear-gradient(180deg, #fdf6ee 0%, #fff 100%);
}
.mock__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11,31,58,.08);
}
.mock__body--dark .mock__nav { border-color: rgba(255,255,255,.1); }
.mock__brand {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
}
.mock__brand--light { color: #fff; letter-spacing: 0.15em; }
.mock__menu {
  display: flex;
  gap: 8px;
}
.mock__menu span {
  width: 28px; height: 6px;
  border-radius: 3px;
  background: rgba(11,31,58,.12);
}
.mock__menu--light span { background: rgba(255,255,255,.2); }
.mock__hero {
  padding: 8px 0;
}
.mock__hero--split {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 16px;
  align-items: center;
}
.mock__h1 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.mock__h1--small { font-size: 1.05rem; }
.mock__h1--light { color: #fff; }
.mock__sub {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.mock__sub--light { color: rgba(255,255,255,.65); }
.mock__cta {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}
.mock__cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.mock__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}
.mock__card {
  background: #f7f8fc;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock__icon { font-size: 1rem; }
.mock__line {
  height: 5px;
  background: rgba(11,31,58,.12);
  border-radius: 3px;
  width: 90%;
}
.mock__line.short { width: 60%; }
.mock__portrait {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9b289 0%, #8b7355 100%);
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.mock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  background: #f7f8fc;
  border-radius: 8px;
  margin-top: auto;
}
.mock__stats div {
  text-align: center;
}
.mock__stats b {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 800;
}
.mock__stats span {
  font-size: 0.65rem;
  color: var(--muted);
}
.mock__bar {
  height: 60px;
  margin-top: auto;
  border-radius: 6px;
  background:
    linear-gradient(90deg, var(--accent) 0%, var(--accent) 30%, rgba(255,255,255,.1) 30%, rgba(255,255,255,.1) 100%);
  position: relative;
}
.mock__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.15) 12% 12.5%);
  border-radius: 6px;
}
.mock__photo {
  height: 60px;
  border-radius: 6px;
}
.mock__photo--1 { background: linear-gradient(135deg, #8b3a3a, #c46e4e); }
.mock__photo--2 { background: linear-gradient(135deg, #6b4423, #b89274); }
.mock__photo--3 { background: linear-gradient(135deg, #2d4a3e, #87a878); }
.mock__tag {
  position: absolute;
  top: 16px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transform: translateZ(40px);
}

/* ---------- Stimmen ---------- */
.voices {
  background: var(--soft);
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.voice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  margin: 0;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.voice::before {
  content: "\201C";
  position: absolute;
  top: -16px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  font-family: 'Inter', serif;
  font-weight: 800;
}
.voice:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,92,57,.4);
}
.voice--accent {
  background: linear-gradient(180deg, #fff 0%, #fff5f1 100%);
}
.voice__quote {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 500;
}
.voice__by {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.voice__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
.voice__avatar--1 { background: linear-gradient(135deg, #4a5d7e, #2a3b57); }
.voice__avatar--2 { background: linear-gradient(135deg, #c46e4e, #8b3a3a); }
.voice__avatar--3 { background: linear-gradient(135deg, #6b8e5e, #2d4a3e); }
.voice__name {
  font-weight: 700;
  font-size: 0.95rem;
}
.voice__role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Live Demos ---------- */
.demos {
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(255,92,57,.07), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(11,31,58,.04), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.demos__lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 64ch;
  margin: -32px 0 56px;
}
.demos__lead strong { color: var(--ink); font-weight: 600; }
.demos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .demos__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .demos__grid { grid-template-columns: 1fr; } }
.demos__note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.demo-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,92,57,.5);
}
.demo-card__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f4f5f9;
  border-bottom: 1px solid var(--line);
}
.demo-card__chrome span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d6dae3;
}
.demo-card__chrome span:nth-child(1) { background: #ff5f57; }
.demo-card__chrome span:nth-child(2) { background: #febc2e; }
.demo-card__chrome span:nth-child(3) { background: #28c840; }
.demo-card__url {
  flex: 1;
  margin-left: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-family: ui-monospace, 'SF Mono', monospace;
}
.demo-card__frame {
  position: relative;
  aspect-ratio: 4/3;
  background: #fafbff;
  overflow: hidden;
}
.demo-card__frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #fff;
  transition: transform .8s ease;
}
.demo-card:hover .demo-card__frame img { transform: scale(1.03); }
.demo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,31,58,.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.demo-card:hover .demo-card__overlay { opacity: 1; }
.demo-card__cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(255,92,57,.4);
}
.demo-card__meta {
  padding: 20px 22px 22px;
}
.demo-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  color: #fff;
}
.demo-card__tag--vogel    { background: #FF6B1A; }
.demo-card__tag--elektro  { background: #C42626; }
.demo-card__tag--mira     { background: #7A8556; }
.demo-card__meta h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.demo-card__meta p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Compare ---------- */
.compare__wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
  min-width: 640px;
}
.compare__table th,
.compare__table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare__table thead th {
  background: var(--soft);
  font-weight: 600;
  color: var(--ink-2);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare__table tbody th {
  font-weight: 600;
  color: var(--ink);
  width: 30%;
}
.compare__table tbody td:not(.is-highlight) {
  background: rgba(255,92,57,.06);
}
.compare__table .is-highlight {
  background: rgba(46,160,107,.10);
  color: var(--ink);
}
.compare__table thead .is-highlight {
  background: var(--ink);
  color: #fff;
  position: relative;
}
.compare__table tbody tr:last-child td,
.compare__table tbody tr:last-child th { border-bottom: none; }

/* Mobile: jede Zeile als Karte mit 3 Mini-Spalten nebeneinander */
@media (max-width: 760px) {
  .compare__wrap {
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .compare__table {
    min-width: 0;
    background: transparent;
    display: block;
  }
  .compare__table thead { display: none; }
  .compare__table tbody, .compare__table tbody tr { display: block; }
  .compare__table tbody tr {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 14px 14px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .compare__table tbody tr:last-child { margin-bottom: 0; }
  .compare__table tbody th {
    grid-column: 1 / -1;
    display: block;
    width: auto;
    font-size: 0.95rem;
    padding: 0 0 10px;
    border: none;
    border-bottom: 1px solid var(--line);
    margin-bottom: 4px;
    color: var(--ink);
  }
  .compare__table tbody td {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 10px;
    border: none;
    background: transparent !important;
    border-radius: 8px;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.3;
    min-width: 0;
    word-break: break-word;
  }
  .compare__table tbody td::before {
    content: attr(data-col);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 700;
    display: block;
  }
  .compare__table tbody td:not(.is-highlight) {
    background: rgba(255,92,57,.08) !important;
  }
  .compare__table tbody td:not(.is-highlight)::before { color: #B8492C; }
  .compare__table tbody td.is-highlight {
    background: rgba(46,160,107,.14) !important;
  }
  .compare__table tbody td.is-highlight::before { color: #1F8B5A; }
  .compare__table tbody td.is-highlight strong {
    font-size: 0.95rem;
    color: var(--ink);
  }
}

@media (max-width: 420px) {
  .compare__table tbody td { font-size: 0.82rem; padding: 6px 8px; }
  .compare__table tbody td::before { font-size: 9px; }
}

/* ---------- About ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}
.about__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about__text p { color: var(--ink-2); margin-bottom: 12px; max-width: 60ch; }

@media (max-width: 720px) {
  .about__inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .about__photo { width: 120px; height: 120px; font-size: 1.5rem; }
}

/* ---------- CTA / Form ---------- */
.cta {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(255,92,57,.25), transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: 920px;
}
.cta__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 560px;
  margin: 0 auto;
}
.cta__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease, box-shadow .25s ease;
  gap: 6px;
}
.cta__phone:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(0,0,0,0.18); }
.cta__phone__label {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent-ink);
  font-weight: 700;
}
.cta__phone__num {
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.cta__phone__hint { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.cta__phone::before {
  content: "📞";
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.cta__split__divider {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: rgba(255,255,255,.45);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta__split__divider span {
  background: transparent;
  padding: 6px 12px;
}
.cta__split__divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  width: auto; height: 1px; left: 0; right: 0; top: 50%;
  z-index: -1;
}
@media (max-width: 760px) {
  .cta__phone { padding: 24px 22px; }
}
.cta__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta__sub {
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  font-size: var(--fs-lead);
}
.contact-form {
  background: #fff;
  color: var(--ink);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-2);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,92,57,.18);
}
.field textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; margin-top: 8px; }
.cta__alt { margin-top: 16px; font-size: 0.9rem; color: var(--muted); text-align: center; }
.cta__alt a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }

.hp { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 36px 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 32px;
  align-items: center;
}
.footer__brand { color: var(--ink); font-weight: 700; }
.footer__by a { color: var(--accent-ink); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--ink); }
.footer__claim {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 0.8rem;
}

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

/* ---------- Animations ---------- */

/* Scroll progress bar */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #ffb199);
  z-index: 100;
  transition: width .08s linear;
  pointer-events: none;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
.reveal[data-delay="7"] { transition-delay: .56s; }
.reveal[data-delay="8"] { transition-delay: .64s; }

/* Hero entry */
.hero__badge,
.hero__lead,
.hero__price,
.hero__cta,
.hero__bullets {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__badge   { animation-delay: .05s; }
.hero__lead    { animation-delay: .85s; }
.hero__price   { animation-delay: 1.00s; }
.hero__cta     { animation-delay: 1.15s; }
.hero__bullets { animation-delay: 1.30s; }

@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

/* Hero accent shimmer + underline */
.hero__title .accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--accent) 0%, #ff8a6e 25%, #ffb199 50%, #ff8a6e 75%, var(--accent) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4.5s ease-in-out infinite;
}
.hero__title .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.4s cubic-bezier(.2,.8,.2,1) 1.1s forwards, lineGlow 3s ease-in-out 2.6s infinite;
  opacity: .55;
  filter: blur(1px);
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes drawLine {
  to { transform: scaleX(1); }
}
@keyframes lineGlow {
  0%, 100% { opacity: .35; filter: blur(1px); }
  50%      { opacity: .75; filter: blur(2px); }
}

/* Word-by-word headline reveal */
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) rotate(2deg);
  animation: wordIn .85s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes wordIn {
  to { opacity: 1; transform: none; }
}

/* Soft floating glow in hero */
.hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  top: -120px; right: -120px;
  background: radial-gradient(closest-side, rgba(255,92,57,.18), transparent 70%);
  filter: blur(10px);
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }
@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50%      { transform: translate(-30px, 25px); }
}

/* Pulsing live dot */
.hero__badge .dot {
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(15,169,104,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(15,169,104,.05); }
}

/* Card hover lifts + 3D tilt */
.stat, .feature, .price, .step {
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
  transform-style: preserve-3d;
}
.stat:hover, .feature:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,92,57,.5);
}
.price:not(.price--accent):hover {
  box-shadow: var(--shadow-lg);
}

/* Featured price card animated gradient border */
.price--accent {
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    linear-gradient(120deg, var(--accent), #ff8a6e, #ff5c39, #ffb199, var(--accent)) border-box;
  border: 2px solid transparent;
  background-size: 100% 100%, 300% 300%;
  animation: gradientBorder 6s ease infinite;
}
@keyframes gradientBorder {
  0%, 100% { background-position: 0% 0%, 0% 50%; }
  50%      { background-position: 0% 0%, 100% 50%; }
}
.price--accent .price__num {
  text-shadow: 0 0 30px rgba(255,92,57,.5);
}

/* Stat numbers glow on view */
.stat__num {
  background: linear-gradient(135deg, var(--accent), #ff8a6e);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(255,92,57,.25));
}
.stat:hover .stat__num {
  filter: drop-shadow(0 6px 18px rgba(255,92,57,.45));
}

/* Feature card sweep */
.feature {
  position: relative;
  overflow: hidden;
}
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,92,57,.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
  pointer-events: none;
}
.feature:hover::after { transform: translateX(100%); }

/* Button shine on hover */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .7s ease;
}
.btn--primary:hover::before { left: 130%; }

/* Compare row hover */
.compare__table tbody tr {
  transition: background .25s ease;
}
.compare__table tbody tr:hover {
  background: rgba(11,31,58,.025);
}
.compare__table tbody tr:hover .is-highlight {
  background: rgba(46,160,107,.18);
}

/* Step number pop on hover */
.step:hover .step__num {
  transform: translateY(-2px);
  letter-spacing: 0.14em;
}
.step__num { transition: transform .3s ease, letter-spacing .3s ease; }

/* About photo subtle breathe */
.about__photo {
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-md); }
  50%      { transform: scale(1.02); box-shadow: var(--shadow-lg); }
}

/* CTA glow drift + cursor spotlight */
.cta {
  --mx: 50%;
  --my: 50%;
}
.cta::before {
  animation: drift 14s ease-in-out infinite;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx) var(--my), rgba(255,92,57,.18), transparent 60%);
  pointer-events: none;
  transition: opacity .3s ease;
  opacity: 0;
}
.cta:hover::after { opacity: 1; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-40px, 30px) scale(1.1); }
}

/* Steps: animated connector line */
.step-list { position: relative; }
@media (min-width: 800px) {
  .step-list::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
    z-index: 0;
  }
  .step-list.is-in::before { transform: scaleX(1); }
}
.step { position: relative; z-index: 1; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: .95rem;
  letter-spacing: 0;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(255,92,57,.35);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.step:hover .step__num {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 12px 32px rgba(255,92,57,.5);
  letter-spacing: 0;
}

/* Compare highlight pulse */
.compare__table thead .is-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255,92,57,.15));
  animation: highlightPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes highlightPulse {
  0%, 100% { opacity: .4; }
  50%      { opacity: 1; }
}

/* Nav brand mark spin on hover */
.nav__brand:hover .nav__mark {
  transform: rotate(45deg) scale(1.2);
  background: linear-gradient(135deg, var(--accent), #ff8a6e);
}
.nav__mark { transition: transform .4s cubic-bezier(.2,.8,.2,1), background .4s ease; }

/* Form focus glow */
.field input:focus,
.field textarea:focus {
  transform: translateY(-1px);
}
.field input,
.field textarea {
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
