/* ============================================================================
   Marketing Page (non-Hero Sections) — Welle 2026-05
   ----------------------------------------------------------------------------
   Layout für Channels (3-Card), Pricing (Service-Menu+Bundle), Process
   (recyclet process-statement), Results (Vorher/Nachher Grid), Why (4 Karten).
   FAQ + CTA recyceln .wd-faq-* + .wd-cta-* aus webdesign-page.css.
   ============================================================================ */

/* ─── Section-Level Tokens (Light + Dark) ────────────────────────────────── */
.mkt-channels,
.mkt-pricing,
.mkt-process,
.mkt-results,
.mkt-why,
.mkt-faq,
.mkt-cta {
  --mkt-brand:       #1498D5;
  --mkt-brand-dark:  #0F7BB2;
  --mkt-ink:         #0A1B33;
  --mkt-ink-soft:    rgba(10, 27, 51, 0.65);
  --mkt-line:        rgba(10, 27, 51, 0.10);
  --mkt-line-strong: rgba(10, 27, 51, 0.18);
  --mkt-surface:     #ffffff;
  --mkt-bg-soft:     #f8faff;
  /* Atelier-eyebrow aliases */
  --at-mocha:        #1498D5;
  --at-ink:          #0A1B33;
  --at-ink-soft:     rgba(10, 27, 51, 0.65);
  --at-font-body:    var(--font-main, 'Inter', system-ui, sans-serif);
}
body.is-dark-bg .mkt-channels,
body.is-dark-bg .mkt-pricing,
body.is-dark-bg .mkt-process,
body.is-dark-bg .mkt-results,
body.is-dark-bg .mkt-why,
body.is-dark-bg .mkt-faq,
body.is-dark-bg .mkt-cta {
  --mkt-brand:       #3EB6F0;
  --mkt-brand-dark:  #1498D5;
  --mkt-ink:         #F0F4FA;
  --mkt-ink-soft:    rgba(240, 244, 250, 0.65);
  --mkt-line:        rgba(240, 244, 250, 0.10);
  --mkt-line-strong: rgba(240, 244, 250, 0.18);
  --mkt-surface:     #15233a;
  --mkt-bg-soft:     #102036;
  --at-mocha:        #3EB6F0;
  --at-ink:          #F0F4FA;
  --at-ink-soft:     rgba(240, 244, 250, 0.65);
}

.mkt-channels,
.mkt-pricing,
.mkt-process,
.mkt-results,
.mkt-why,
.mkt-faq,
.mkt-cta {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

/* ─── Common Section-Header ──────────────────────────────────────────────── */
.mkt-section-header {
  margin: 0 auto clamp(2rem, 5vw, 3.5rem) 0;
  max-width: 760px;
  text-align: left;
}
.mkt-section-header--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mkt-section-header--centered .atelier-eyebrow {
  justify-content: center;
}
.mkt-section-title {
  font-size: clamp(1.7rem, 5.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--mkt-ink);
  margin: 0.4rem 0 0.6rem;
}
.mkt-section-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--mkt-ink-soft);
  max-width: 60ch;
  margin: 0;
}

/* ============================================================================
   CHANNELS — 3-Card Layout (LINE / TikTok / Google)
   ============================================================================ */
.mkt-channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 880px) {
  .mkt-channels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.mkt-channel-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.75rem 1.6rem;
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.mkt-channel-card:hover {
  transform: translateY(-3px);
  border-color: var(--mkt-line-strong);
  box-shadow: 0 12px 28px -8px rgba(10, 27, 51, 0.14);
}
body.is-dark-bg .mkt-channel-card:hover {
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.45);
}

.mkt-channel-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.mkt-channel-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
}
.mkt-channel-card--line   .mkt-channel-card-logo { background: rgba(6, 199, 85, 0.12); color: #06C755; }
.mkt-channel-card--tiktok .mkt-channel-card-logo { background: linear-gradient(135deg, rgba(255, 0, 80, 0.12), rgba(0, 246, 255, 0.12)); color: #FF0050; }
.mkt-channel-card--google .mkt-channel-card-logo { background: rgba(66, 133, 244, 0.10); }
body.is-dark-bg .mkt-channel-card--line   .mkt-channel-card-logo { background: rgba(6, 199, 85, 0.18); }
body.is-dark-bg .mkt-channel-card--tiktok .mkt-channel-card-logo { background: linear-gradient(135deg, rgba(255, 0, 80, 0.18), rgba(0, 246, 255, 0.18)); }
body.is-dark-bg .mkt-channel-card--google .mkt-channel-card-logo { background: rgba(66, 133, 244, 0.18); }

.mkt-channel-card-name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--mkt-ink);
}

.mkt-channel-card-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  background: var(--mkt-bg-soft);
  border-radius: 12px;
}
body.is-dark-bg .mkt-channel-card-stat {
  background: rgba(255, 255, 255, 0.04);
}
.mkt-channel-card-stat-value {
  font-size: clamp(1.8rem, 4.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--mkt-brand);
}
.mkt-channel-card--line   .mkt-channel-card-stat-value { color: #06C755; }
.mkt-channel-card--tiktok .mkt-channel-card-stat-value { color: #FF0050; }
.mkt-channel-card--google .mkt-channel-card-stat-value { color: #4285F4; }
body.is-dark-bg .mkt-channel-card--google .mkt-channel-card-stat-value { color: #6FA8FF; }

.mkt-channel-card-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mkt-ink-soft);
  line-height: 1.4;
}

.mkt-channel-card-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--mkt-ink-soft);
  margin: 0;
}

/* ============================================================================
   PRICING — Service-Menu + Bundle + Erstgespräch-Box
   ============================================================================ */
.mkt-menu {
  border: 1px solid var(--mkt-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--mkt-surface);
  margin-bottom: 1.5rem;
}
.mkt-menu-cat-header {
  padding: 0.75rem 1.5rem;
  background: var(--mkt-bg-soft);
  border-bottom: 1px solid var(--mkt-line);
  border-top: 1px solid var(--mkt-line);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mkt-brand-dark);
}
.mkt-menu-cat:first-child .mkt-menu-cat-header {
  border-top: 0;
}
body.is-dark-bg .mkt-menu-cat-header {
  color: var(--mkt-brand);
}

.mkt-menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.5rem;
  border-bottom: 1px solid var(--mkt-line);
  background: var(--mkt-surface);
  text-decoration: none;
  transition: background 0.15s ease;
}
.mkt-menu-row:last-child {
  border-bottom: 0;
}
.mkt-menu-row:hover {
  background: var(--mkt-bg-soft);
}
.mkt-menu-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mkt-ink);
  flex: 1;
}
.mkt-menu-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--mkt-brand-dark);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s ease;
}
.mkt-menu-price::after {
  content: ' →';
  font-weight: 400;
  opacity: 0.55;
}
.mkt-menu-row:hover .mkt-menu-price {
  color: var(--mkt-brand);
}
body.is-dark-bg .mkt-menu-price {
  color: var(--mkt-brand);
}

@media (max-width: 599px) {
  .mkt-menu-row {
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
  }
  .mkt-menu-name { width: 100%; }
}

/* ─── Bundle-Box (gradient highlight) ─────────────────────────────────────── */
.mkt-bundle {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: linear-gradient(160deg, #1a2540, #0f172a);
  border-radius: 14px;
  color: #fff;
}
@media (min-width: 768px) {
  .mkt-bundle {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.mkt-bundle-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(165, 195, 250, 0.15);
  color: #a5c3fa;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  width: fit-content;
}
.mkt-bundle-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0.4rem 0 0.2rem;
  line-height: 1.3;
}
.mkt-bundle-items {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}
.mkt-bundle-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .mkt-bundle-right {
    align-items: flex-end;
    text-align: right;
  }
}
.mkt-bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.mkt-bundle-price {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.mkt-bundle-statt {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}
.mkt-bundle-sparen {
  font-size: 0.75rem;
  font-weight: 700;
  color: #86efac;
  margin-top: 0.2rem;
}
.mkt-bundle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: #0A1B33;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.15s ease;
}
.mkt-bundle-btn:hover {
  background: #f0f4ff;
}

/* ─── Erstgespräch-Box (Free-Consultation CTA) ───────────────────────────── */
.mkt-erstgesp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #eef4ff, #f5f9ff);
  border: 1px solid rgba(20, 152, 213, 0.20);
  border-radius: 14px;
  padding: 1.75rem;
  margin-top: 1.75rem;
}
body.is-dark-bg .mkt-erstgesp {
  background: linear-gradient(135deg, rgba(62, 182, 240, 0.06), rgba(62, 182, 240, 0.02));
  border-color: rgba(62, 182, 240, 0.25);
}
.mkt-erstgesp-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--mkt-ink);
  margin: 0;
}
.mkt-erstgesp-sub {
  font-size: 0.88rem;
  color: var(--mkt-ink-soft);
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}

/* ============================================================================
   PROCESS — recyclet .process-story (process-section-v2.css)
   ----------------------------------------------------------------------------
   5 Slots = 4 normale Steps + 1 "ongoing"-Step (∞-Symbol), analog Webdesign.
   Process-section-v2.css ist auf 5 Spalten + Gradient cyan→accent ausgelegt →
   keine Overrides nötig, default-Layout passt direkt.
   ============================================================================ */
.mkt-process { background: var(--mkt-bg-soft); }
body.is-dark-bg .mkt-process { background: #0f1c33; }

/* ============================================================================
   RESULTS — Vorher/Nachher Grid (2x2)
   ============================================================================ */
.mkt-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .mkt-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mkt-result-card {
  display: flex;
  flex-direction: column;
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-line);
  border-radius: 14px;
  overflow: hidden;
}
.mkt-result-half {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.5rem;
  flex: 1;
}
.mkt-result-half--vorher {
  background: rgba(220, 38, 38, 0.04);
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-result-half--nachher {
  background: rgba(22, 163, 74, 0.04);
}
body.is-dark-bg .mkt-result-half--vorher {
  background: rgba(220, 38, 38, 0.08);
}
body.is-dark-bg .mkt-result-half--nachher {
  background: rgba(22, 163, 74, 0.08);
}
.mkt-result-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mkt-result-half--vorher  .mkt-result-label { color: #dc2626; }
.mkt-result-half--nachher .mkt-result-label { color: #16a34a; }
body.is-dark-bg .mkt-result-half--vorher  .mkt-result-label { color: #f87171; }
body.is-dark-bg .mkt-result-half--nachher .mkt-result-label { color: #4ade80; }

.mkt-result-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--mkt-ink);
  margin: 0;
  font-weight: 500;
}

/* ============================================================================
   WHY — 4 USP-Karten (Differentiator)
   ============================================================================ */
.mkt-why {
  background: linear-gradient(150deg, #111c35 0%, #1a2540 50%, #111c35 100%);
}
.mkt-why .mkt-section-title,
.mkt-why .atelier-eyebrow-num,
.mkt-why .atelier-eyebrow-label {
  color: #ffffff;
}
.mkt-why .atelier-eyebrow-line {
  background: rgba(255, 255, 255, 0.25);
}
.mkt-why .mkt-section-sub {
  color: rgba(255, 255, 255, 0.65);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.mkt-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (min-width: 600px) {
  .mkt-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .mkt-why-grid { grid-template-columns: repeat(4, 1fr); }
}

.mkt-why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.mkt-why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}
.mkt-why-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.mkt-why-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.mkt-why-text {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
  white-space: pre-line;
}

/* ─── FAQ + CTA: Recycle .wd-faq-* + .wd-cta-* from webdesign-page.css ──── */
.mkt-faq-list {
  margin-top: 1rem;
}
