/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #FFFFFF;
  --bg-gray:      #F5F5F7;
  --bg-card:      #FFFFFF;
  --border:       #E8E8ED;
  --border-light: #D2D2D7;
  --text:         #1D1D1F;
  --text-muted:   #6E6E73;
  --text-dim:     #AEAEB2;
  --blue:         #007AFF;
  --blue-hover:   #0066DD;
  --blue-tint:    #EBF4FF;
  --blue-mid:     #C8E0FF;
  --radius:       18px;
  --radius-sm:    12px;
  --radius-pill:  999px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  overflow: visible;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,122,255,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-tint);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }

.btn-nav {
  background: var(--blue);
  color: #fff;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--blue-hover); }

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ─── LABELS ─────────────────────────────────────────────── */
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 1.25rem;
  overflow: visible;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--text); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero-section-wrap {
  background: linear-gradient(160deg, #EBF4FF 0%, #F0F7FF 30%, #FFFFFF 65%);
  border-bottom: 1px solid var(--border);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--blue-tint);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
  overflow: visible;
  padding-bottom: 0.1em;
}

.hero-title em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* Flow visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

.flow-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.flow-card:hover { box-shadow: var(--shadow-md); }

.flow-icon { font-size: 1.4rem; flex-shrink: 0; }

.flow-label {
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
}
.flow-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.flow-status {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.flow-status--live {
  background: #E6F7EF;
  color: #1D8348;
  border: 1px solid #A9DFBF;
}
.flow-status--done {
  background: var(--blue-tint);
  color: var(--blue);
  border: 1px solid var(--blue-mid);
}

.flow-arrow {
  text-align: center;
  color: var(--text-dim);
  font-size: 1rem;
  padding: 0.25rem 0;
}

.flow-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  padding: 0.65rem 1rem;
  background: var(--blue-tint);
  border: 1px dashed var(--blue-mid);
  border-radius: var(--radius-sm);
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  overflow: visible;
  padding-bottom: 0.1em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ─── PROBLEM ────────────────────────────────────────────── */
.problem {
  padding: 6rem 0;
  background: var(--bg-gray);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pain-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-mid);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  line-height: 1;
  overflow: visible;
}

.pain-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 700;
  overflow: visible;
  line-height: 1.3;
  padding-bottom: 0.05em;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── LÖSUNG ─────────────────────────────────────────────── */
.solution {
  padding: 6rem 0;
  background: #fff;
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.solution-body {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.solution-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.check {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Mockup */
.mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-gray);
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  display: inline-block;
}

.mockup-title {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.mockup-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.83rem;
  line-height: 1.55;
}

.msg-in {
  background: var(--bg-gray);
  color: var(--text-muted);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-out {
  background: var(--blue);
  color: #fff;
  align-self: flex-end;
  text-align: right;
  border-bottom-right-radius: 4px;
}

/* ─── PAKETE ─────────────────────────────────────────────── */
.pakete {
  padding: 6rem 0;
  background: var(--bg-gray);
}

.pakete-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  margin-top: -0.25rem;
}

.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.paket-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.paket-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.paket-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}

.paket-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.paket-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  overflow: visible;
  padding-bottom: 0.05em;
}

.paket-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-family: 'Outfit', sans-serif;
}

.price-setup {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-family: 'Outfit', sans-serif;
}

.price-monthly {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.025em;
  overflow: visible;
  padding-bottom: 0.05em;
}

.paket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.paket-features li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-family: 'Instrument Sans', sans-serif;
}

.pakete-rabatt {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── ÜBER ───────────────────────────────────────────────── */
.ueber {
  padding: 6rem 0;
  background: #fff;
}

.ueber-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: center;
}

.ueber-img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.ueber-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ueber-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq {
  padding: 6rem 0;
  background: var(--bg-gray);
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.8rem;
  background: #fff;
  border: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg-gray); }

.faq-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text-dim);
  transition: transform 0.25s;
}
.faq-q.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 1.2rem 1.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--blue-tint);
  border-top: 1px solid var(--blue-mid);
}
.faq-a.open { display: block; }

/* ─── FINAL CTA ──────────────────────────────────────────── */
.cta-final {
  padding: 7rem 0;
  text-align: center;
  background: linear-gradient(160deg, #EBF4FF 0%, #F5F9FF 60%, #FFFFFF 100%);
  border-top: 1px solid var(--border);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  overflow: visible;
  padding-bottom: 0.08em;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-family: 'Outfit', sans-serif;
}

/* ─── IMPRESSUM ──────────────────────────────────────────── */
.impressum {
  padding: 5rem 0;
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
}

.impressum-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  overflow: visible;
}

.impressum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.impressum-grid h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
  overflow: visible;
}

.impressum-grid p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.impressum-grid a {
  color: var(--blue);
}
.impressum-grid a:hover { text-decoration: underline; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--blue); }

.footer-legal {
  width: 100%;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: 'Outfit', sans-serif;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    gap: 3rem;
  }
  .hero-visual { max-width: 480px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pakete-grid { grid-template-columns: 1fr; }
  .solution-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ueber-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ueber-img-placeholder { width: 160px; height: 200px; font-size: 2rem; }
  .nav-links { display: none; }
  .stat-divider { display: none; }
  .stats-inner { gap: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .impressum-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .btn-large { width: 100%; justify-content: center; }
  .faq-q { font-size: 0.88rem; padding: 1.1rem 1.2rem; }
  .faq-a { padding: 1rem 1.2rem; }
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: fadeUp 0.55s ease both;
}
.hero-badge    { animation-delay: 0.05s; }
.hero-title    { animation-delay: 0.15s; }
.hero-sub      { animation-delay: 0.25s; }
.hero-ctas     { animation-delay: 0.35s; }
.hero-trust    { animation-delay: 0.4s; }
.hero-visual   { animation: fadeUp 0.6s ease 0.3s both; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
