/* GENERATED FILE — do not edit directly.
   Edit assets/css/base.css or includes/sections/<type>/style.css, then
   save any content in the admin (or use "CSS neu erzeugen" on the
   Seiteninhalte tab) to regenerate this file. */

/* MK-Sales — Marco Keenisch Vertriebsanalyse-Landingpage — base styles
   Fonts, resets, buttons, section/kicker scaffolding, legal pages and other
   rules shared across every section. Section-specific CSS lives next to its
   template in includes/sections/<type>/style.css — assets/css/style.css is
   assembled from this file + those on every admin save, do not edit it
   directly.

   This is a single-page funnel: the page's own "hero_landing" and
   "footer_landing" sections stand in for the default site-wide header/nav
   and footer chrome, which is hidden below rather than shown twice. */

@font-face {
  font-family: "Sora";
  src: url("../fonts/sora/sora-var.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* editable via admin/theme.php (see admin/lib/theme.php THEME_FIELDS) */
  --ink: #0f2740;
  --body: #42566d;
  --white: #ffffff;
  --blush: #fdf4fa;
  --pink: #ff66c4;
  --pink-hi: #ff8ad3;
  --line: #f2deec;
  --aubergine: #75025b;
  --aubergine-deep: #5a0146;
  --plum-text: #3d0130;
  --pink-soft: #ffc2e7;
  --navy: #0d2138;
  --navy-2: #16324f;

  /* structural, not admin-editable */
  --navy-line: rgba(255, 255, 255, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 30px 60px -30px rgba(13, 33, 56, 0.4), 0 10px 24px -16px rgba(13, 33, 56, 0.2);
  --shadow-soft: 0 18px 40px -34px rgba(15, 39, 64, 0.5);
  --max: 1160px;
  --font-head: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.13;
  margin: 0 0 0.6em;
  letter-spacing: -0.022em;
  color: var(--ink);
}

h1 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.028em; }
h2 { font-size: clamp(27px, 3.5vw, 40px); }
h3 { font-size: 20px; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1em;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--blush);
}

.section-head {
  max-width: 760px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 14px;
}

.section-head p {
  color: var(--body);
  font-size: 18px;
  margin-top: 15px;
}

/* Buttons */
.cta-group {
  display: inline-block;
  text-align: center;
}

.btn {
  display: block;
  background: var(--pink);
  color: var(--plum-text);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  padding: 18px 34px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 34px -12px rgba(255, 102, 196, 0.6);
}

.btn:hover {
  background: var(--pink-hi);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.btn--dark {
  background: var(--navy);
  color: var(--pink);
  box-shadow: 0 14px 34px -12px rgba(13, 33, 56, 0.7);
}

.btn--dark:hover {
  background: #122b49;
}

.btn-sub {
  display: block;
  font-size: 13px;
  margin-top: 12px;
  opacity: 0.85;
  color: var(--body);
}

/* Shared utilities (used by several section templates) */
.center { text-align: center; }
.mt-3 { margin-top: 2rem; }
.cta-center { text-align: center; margin-top: 46px; }

/* Legal / 404 page */
.legal-page { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.legal-page h1 { margin-bottom: 1em; }

/* The single-page landing design builds its own header (hero_landing
   section) and footer (footer_landing section) as page content, so the
   default site-wide chrome from includes/page_render.php is hidden here —
   this keeps page_render.php itself untouched and shared. */
.site-header,
.site-footer {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}

@media (max-width: 980px) {
  .section { padding: 62px 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .cta-group, .btn { width: 100%; }
}


/* --- section: hero --- */
/* Hero landing (doubles as the page header — the default site-header is hidden, see base.css) */
.hero-landing {
  background: var(--aubergine);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-landing__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  z-index: 1;
}

.hero-landing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 26%;
  display: block;
}

.hero-landing__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--aubergine) 0%, rgba(117, 2, 91, 0.82) 8%, rgba(117, 2, 91, 0) 24%);
}

.hero-landing .container {
  position: relative;
  z-index: 2;
}

.hero-landing__head {
  max-width: 58%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px 0 0;
}

.hero-landing__logo {
  justify-self: start;
  background: #fff;
  border-radius: 11px;
  padding: 9px;
  display: inline-flex;
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
}

.hero-landing__logo img {
  height: 50px;
  display: block;
}

.hero-landing__pill {
  justify-self: center;
  display: inline-block;
  border: 1.5px solid var(--pink);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 102, 196, 0.12);
  line-height: 1.35;
  text-align: center;
}

.hero-landing__pill b {
  color: var(--pink);
  font-weight: 700;
}

.hero-landing__inner {
  max-width: 58%;
  padding: 34px 0 60px;
}

.hero-landing__eyebrow {
  margin-bottom: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--pink);
  line-height: 1.42;
}

.hero-landing h1 {
  color: #fff;
  margin-bottom: 22px;
}

.hero-landing h1 .mark {
  color: var(--pink);
}

.hero-landing__inner > p {
  font-size: 17.5px;
  color: #f2dceb;
  margin-bottom: 14px;
  max-width: 44ch;
}

.hero-landing__inner > p b {
  color: #fff;
  font-weight: 600;
}

.hero-landing__lead2 {
  margin-bottom: 28px !important;
}

.hero-landing__cta-sub {
  color: #efd6e9 !important;
}

.hero-landing__mobimg {
  display: none;
}

@media (max-width: 980px) {
  .hero-landing__media { display: none; }
  .hero-landing__head, .hero-landing__inner { max-width: 100%; }
  .hero-landing__inner { padding: 26px 0 40px; }
  .hero-landing__mobimg {
    display: block;
    margin: 0 0 28px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.5);
  }
  .hero-landing__mobimg img { width: 100%; display: block; }
}

@media (max-width: 560px) {
  .hero-landing__head { flex-direction: column; align-items: flex-start; gap: 14px; }
}


/* --- section: quote_band --- */
/* Quote band (narrow testimonial strip under the hero) */
.quote-band {
  background: var(--aubergine-deep);
  padding: 26px 0;
}

.quote-band__bar {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 820px;
}

.quote-band__bar img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--pink);
}

.quote-band__stars {
  color: var(--pink);
  font-size: 14px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.quote-band__lead {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  font-size: 15.5px;
  display: block;
  margin: 3px 0;
}

.quote-band__body {
  font-size: 15px;
  color: #f2dceb;
}

.quote-band__name {
  font-weight: 600;
  color: #fff;
  font-size: 13.5px;
  margin-top: 6px;
  display: block;
}

.quote-band__role {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  margin-top: 3px;
  opacity: 0.72;
}

@media (max-width: 560px) {
  .quote-band__bar { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* --- section: client_logos --- */
/* Client logo strip (grayscale, no headline) */
.client-logos {
  padding: 44px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.client-logos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 34px;
  max-width: 840px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.client-logos__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
}

.client-logos__img {
  filter: grayscale(1);
  opacity: 0.52;
  transition: opacity 0.2s;
  object-fit: contain;
  max-width: 100%;
}

.client-logos__img:hover {
  opacity: 0.9;
}

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


/* --- section: problem_stack --- */
/* Problem stack (3 cards + fold copy + proof testimonial) */
.problem-stack {
  background: var(--navy);
  color: #e6edf5;
}

.problem-stack h2 {
  color: #fff;
}

.problem-stack__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.problem-stack__card {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: 14px;
  padding: 30px 27px;
  position: relative;
  overflow: hidden;
}

.problem-stack__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pink);
}

.problem-stack__no {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 12px;
}

.problem-stack__card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.problem-stack__card p {
  color: #afc0d2;
  font-size: 15.5px;
  line-height: 1.62;
}

.problem-stack__fold {
  max-width: 770px;
}

.problem-stack__folge {
  font-size: 19px;
  color: #e6edf5;
  margin-bottom: 26px;
}

.problem-stack__spoiler {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.problem-stack__spoiler .hl {
  color: var(--pink);
}

.problem-stack__abbinder {
  font-size: 18px;
  color: #afc0d2;
  margin-bottom: 34px;
  max-width: 58ch;
}

.problem-stack__proof {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: 16px;
  padding: 28px;
  max-width: 860px;
  position: relative;
  overflow: hidden;
}

.problem-stack__proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pink);
}

.problem-stack__proof img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.problem-stack__stars {
  margin-bottom: 12px;
  display: block;
  font-size: 15px;
  color: var(--pink);
}

.problem-stack__proof blockquote {
  font-size: 18.5px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.012em;
  margin: 0;
}

.problem-stack__qname {
  margin-top: 16px;
  color: #afc0d2;
  font-weight: 600;
  font-size: 15px;
}

.problem-stack__qname b {
  color: #fff;
}

.problem-stack__qrole {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  margin-top: 3px;
  opacity: 0.72;
}

@media (max-width: 980px) {
  .problem-stack__grid { grid-template-columns: 1fr; }
  .problem-stack__proof { grid-template-columns: 1fr; }
}


/* --- section: numbered_steps --- */
/* Numbered steps (process/ablauf) */
.numbered-steps {
  background: var(--white);
}

.numbered-steps .eyebrow {
  color: var(--aubergine);
}

.numbered-steps__list {
  display: grid;
  gap: 16px;
}

.numbered-steps__step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  box-shadow: 0 18px 40px -34px rgba(15, 39, 64, 0.5);
  transition: transform 0.18s, box-shadow 0.18s;
}

.numbered-steps__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -30px rgba(15, 39, 64, 0.4);
}

.numbered-steps__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 38px;
  color: var(--pink);
  line-height: 1;
}

.numbered-steps__step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.numbered-steps__step p {
  color: var(--body);
  font-size: 16px;
}

.numbered-steps__tiptag {
  font-size: 12.5px;
  color: var(--aubergine);
  font-weight: 700;
  font-family: var(--font-head);
}

@media (max-width: 560px) {
  .numbered-steps__step { grid-template-columns: 1fr; gap: 6px; padding: 26px 24px; }
}


/* --- section: voice_spotlight --- */
/* Voice spotlight (wide video testimonial + two customer cards) */
.voice-spotlight {
  background: var(--navy);
  color: #e6edf5;
}

.voice-spotlight__wide {
  max-width: 920px;
  margin: 0 auto 52px;
}

.voice-spotlight__wide img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 30px 62px -28px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--navy-line);
}

.voice-spotlight__cap {
  text-align: center;
  margin-top: 20px;
}

.voice-spotlight__stars {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--pink);
}

.voice-spotlight__wide blockquote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18.5px;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.44;
  letter-spacing: -0.012em;
  color: #fff;
}

.voice-spotlight__wname {
  margin-top: 12px;
  font-weight: 600;
  color: var(--pink);
  font-size: 15px;
  display: block;
}

.voice-spotlight__wrole {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  margin-top: 3px;
  opacity: 0.72;
  color: #afc0d2;
}

.voice-spotlight__duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.voice-spotlight__card {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.voice-spotlight__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pink);
}

.voice-spotlight__card blockquote {
  font-size: 16.5px;
  color: #fff;
  line-height: 1.55;
  flex: 1;
  font-family: var(--font-head);
  font-weight: 400;
  margin: 0;
}

.voice-spotlight__who {
  display: flex;
  align-items: center;
  gap: 13px;
}

.voice-spotlight__who img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}

.voice-spotlight__nm {
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-head);
  color: #fff;
  display: block;
}

.voice-spotlight__role {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12.5px;
  color: #afc0d2;
  margin-top: 1px;
}

@media (max-width: 980px) {
  .voice-spotlight__duo { grid-template-columns: 1fr; }
}


/* --- section: faq --- */
/* FAQ */
.faq {
  background: var(--white);
}

.faq .eyebrow {
  color: var(--aubergine);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--pink-soft);
  background: var(--blush);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 26px;
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18.5px;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 19px;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 26px;
  color: var(--pink);
  line-height: 1;
}

.faq-item[open] summary::after { content: "\2013"; }

.faq-item .faq-answer {
  padding: 0 26px 24px;
  color: var(--body);
  font-size: 16.5px;
  max-width: 70ch;
}

.faq-item .faq-answer p:last-child { margin-bottom: 0; }


/* --- section: about --- */
/* About */
.about {
  background: var(--aubergine);
  color: #f6e6f1;
}

.about .eyebrow {
  color: var(--pink);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.about-media img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55);
}

.about h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 35px);
  margin: 12px 0 24px;
}

.about-copy p {
  color: #efd6e9;
  font-size: 17px;
  margin-bottom: 16px;
}

.about-copy p b {
  color: #fff;
  font-weight: 600;
}

.about-motto {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 21px;
  color: #fff;
  border-left: 3px solid var(--pink);
  padding-left: 20px;
  margin: 26px 0 20px;
  line-height: 1.32;
}

.about-antrieb {
  color: var(--pink);
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-media { max-width: 360px; margin: 0 auto; }
}


/* --- section: final_cta --- */
/* Final CTA (with proof testimonial anchor box) */
.cta-final {
  background: var(--blush);
  text-align: center;
}

.cta-final__anchor {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 40px 90px -40px rgba(15, 39, 64, 0.4);
  overflow: hidden;
}

.cta-final__anchor img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.cta-final__inner {
  padding: 36px 30px 12px;
}

.cta-final__stars {
  font-size: 17px;
  display: block;
  margin-bottom: 16px;
  color: var(--pink);
}

.cta-final__anchor blockquote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
  line-height: 1.4;
  max-width: 56ch;
  margin: 0 auto 18px;
  letter-spacing: -0.015em;
}

.cta-final__qname {
  font-weight: 600;
  color: var(--aubergine);
  font-size: 16px;
  font-family: var(--font-head);
}

.cta-final__qrole {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  margin-top: 3px;
  color: var(--body);
}

.cta-final .btn-sub {
  color: var(--body);
}

.cta-final__ctabox {
  margin-top: 46px;
}


/* --- section: footer_landing --- */
/* Footer landing (stands in for the default site-wide footer) */
.footer-landing {
  padding: 46px 0 58px;
  text-align: center;
  background: var(--navy);
  color: #8ca2ba;
  font-size: 13px;
}

.footer-landing__badge {
  background: #fff;
  border-radius: 10px;
  padding: 9px;
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-landing__badge img {
  height: 42px;
  display: block;
}

.footer-landing p {
  max-width: 60ch;
  margin: 0 auto;
}

.footer-landing__legal {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin: 14px 0 0;
  padding: 0;
}

.footer-landing__legal a {
  color: #8ca2ba;
  text-decoration: none;
}

.footer-landing__legal a:hover {
  color: var(--pink);
}
