/**
 * Lokino Startseite – exakt nach Screenshot.
 * Scoped auf body.lk-page; überschreibt globale Customer-Styles auf der Startseite.
 */

/* -----------------------------------------------------------
   Design-Tokens
   ----------------------------------------------------------- */
body.lk-page {
  --lk-bg-1: #FFF7EF;
  --lk-bg-2: #FFFFFF;
  --lk-bg-3: #FDF3E7;
  --lk-bg-4: #F4E7D9;
  --lk-line: #F0E6DA;
  --lk-line-soft: #EFE2D2;
  --lk-ink: #2F1F12;
  --lk-muted: #6F6258;
  --lk-chip-bg: #F1E5D6;
  --lk-green: #7BA245;
  --lk-green-deep: #5C8F3A;
  --lk-orange: #EA8A37;
  --lk-shadow-card: 0 8px 24px rgba(0,0,0,0.04);
  --lk-shadow-soft: 0 4px 16px rgba(47,31,18,0.05);
  --lk-radius-card: 20px;
  --lk-radius-block: 24px;
  --lk-radius-pill: 999px;
  --lk-container: 1200px;
  --lk-section-py: 80px;
  --lk-section-py-mobile: 48px;
}

/* -----------------------------------------------------------
   Reset / Hide base shell on the home page
   ----------------------------------------------------------- */
body.lk-page,
body.mm-customer.lk-page {
  background: var(--lk-bg-1) !important;
  color: var(--lk-ink);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 400;
  letter-spacing: normal;
  padding-top: 0 !important;
  -webkit-font-smoothing: antialiased;
}

body.lk-page .mm-navbar,
body.lk-page .mm-footer,
body.lk-page > .mm-shell > nav.navbar {
  display: none !important;
}

body.lk-page .mm-shell {
  background: transparent;
  padding: 0;
  margin: 0;
  min-height: auto;
}

body.lk-page .mm-lp__mesh {
  display: none !important;
}

/* Reset Bootstrap form styles inside our search */
body.lk-page .lk-search__input.form-control,
body.lk-page input.lk-search__input {
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  height: auto;
}

/* Container */
.lk-container {
  width: 100%;
  max-width: var(--lk-container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* -----------------------------------------------------------
   Header
   ----------------------------------------------------------- */
body.lk-page header.lk-header {
  height: 72px;
  background: #FFFFFF;
  color: var(--lk-ink);
  padding: 0;
  border-bottom: 1px solid var(--lk-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

body.lk-page header.lk-header a {
  color: inherit;
  text-decoration: none;
}

body.lk-page header.lk-header a:hover {
  text-decoration: none;
}

.lk-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lk-header__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  color: var(--lk-ink);
  line-height: 1;
}

.lk-header__brand:hover {
  text-decoration: none;
  color: var(--lk-ink);
}

/* Wortmarke wie in der App: LOKI (dunkel) + N (grün) + O (orange) */
.lk-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.8px;
}

.lk-wordmark--lg {
  font-size: 36px;
}

.lk-wordmark__loki {
  color: #4A3625;
}

.lk-wordmark__n {
  color: #7BA245;
}

.lk-wordmark__o {
  color: #EA8A37;
}

.lk-claim {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.85px;
  color: var(--lk-muted);
  margin-top: 4px;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lk-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lk-nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--lk-ink);
  text-decoration: none;
  transition: color 0.15s ease;
}

.lk-nav__link:hover {
  color: var(--lk-green);
  text-decoration: none;
}

.lk-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--lk-green);
  color: var(--lk-green);
  background: transparent;
  border-radius: var(--lk-radius-pill);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
}

.lk-nav__btn:hover {
  background: var(--lk-green);
  color: #fff;
  text-decoration: none;
}

.lk-nav__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--lk-ink);
  text-decoration: none;
  font-size: 18px;
}

.lk-nav__cart:hover {
  color: var(--lk-green);
  text-decoration: none;
}

.lk-nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 22px;
  color: var(--lk-ink);
  padding: 4px 8px;
  cursor: pointer;
}

/* -----------------------------------------------------------
   Section base
   ----------------------------------------------------------- */
.lk-section {
  padding: var(--lk-section-py) 0;
  position: relative;
}

.lk-section--bg-1 { background: var(--lk-bg-1); }
.lk-section--bg-2 { background: var(--lk-bg-2); }
.lk-section--bg-3 { background: var(--lk-bg-3); }

/* -----------------------------------------------------------
   Hero – images[0] = Hintergrund der ganzen Section (Querformat).
   100% auto: Breite = Bereich, Höhe proportional — kein cover-Zoom über die kurze Kante.
   ----------------------------------------------------------- */
.lk-hero {
  background-color: var(--lk-bg-1);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  padding: clamp(48px, 5vw, 72px) 0 clamp(64px, 7vw, 96px);
  position: relative;
  /* overflow:visible damit nichts in der Section (inkl. Portals unter body) visuell „abgeschnitten“ wirkt */
  overflow: visible;
  min-height: clamp(360px, 42vw, 500px);
  display: flex;
  align-items: center;
}

.lk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    var(--lk-bg-1) 0%,
    rgba(255, 247, 239, 0.92) 38%,
    rgba(255, 247, 239, 0.5) 52%,
    rgba(255, 247, 239, 0) 62%
  );
}

.lk-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.lk-hero__copy {
  flex: 0 0 55%;
  max-width: 55%;
}

.lk-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--lk-muted);
  background: var(--lk-chip-bg);
  padding: 6px 12px;
  border-radius: var(--lk-radius-pill);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}

.lk-hero__title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--lk-ink);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.lk-hero__title-accent {
  color: var(--lk-green);
}

.lk-hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--lk-muted);
  margin: 0 0 32px;
  max-width: 520px;
}

/* Search bar */
.lk-search {
  background: #FFFFFF;
  border-radius: var(--lk-radius-pill);
  padding: 6px;
  display: flex;
  align-items: center;
  box-shadow: var(--lk-shadow-soft);
  max-width: 540px;
}

.lk-search__icon {
  color: var(--lk-muted);
  margin: 0 6px 0 14px;
  font-size: 14px;
}

.lk-search__input {
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 12px;
  width: 100%;
  font-size: 16px;
  color: var(--lk-ink);
  font-family: inherit;
  min-width: 0;
}

.lk-search__input::placeholder {
  color: #A89F94;
}

.lk-search__btn {
  background: var(--lk-green);
  color: #FFFFFF;
  border: none;
  border-radius: var(--lk-radius-pill);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lk-search__btn:hover {
  background: var(--lk-green-deep);
}

.lk-locate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  margin-left: 4px;
  background: transparent;
  border: 0;
  color: var(--lk-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
}

.lk-locate:hover {
  color: var(--lk-green);
}

.lk-locate__icon {
  color: var(--lk-green);
  font-size: 13px;
}

/* Benefits */
.lk-benefits {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.lk-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lk-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lk-bg-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lk-green);
  font-size: 18px;
  flex-shrink: 0;
}

.lk-benefit__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lk-benefit__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--lk-ink);
}

.lk-benefit__sub {
  font-size: 12px;
  color: var(--lk-muted);
  line-height: 1.4;
}

/* -----------------------------------------------------------
   4 Steps
   ----------------------------------------------------------- */
.lk-steps {
  background: #FFFFFF;
  padding: var(--lk-section-py) 0;
}

.lk-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.lk-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--lk-orange);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.lk-section__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--lk-ink);
  margin: 0;
  line-height: 1.25;
}

.lk-section__title-accent {
  color: var(--lk-green);
}

.lk-steps__grid {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  position: relative;
}

.lk-step {
  flex: 1 1 0;
  background: #FFFFFF;
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-card);
  padding: 24px;
  box-shadow: var(--lk-shadow-card);
  position: relative;
  text-align: left;
}

.lk-step__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.lk-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lk-bg-4);
  color: var(--lk-ink);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lk-step__icon {
  color: var(--lk-green);
  font-size: 18px;
  margin-left: auto;
}

.lk-step__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--lk-ink);
  margin: 0 0 8px;
}

.lk-step__text {
  font-size: 13px;
  color: var(--lk-muted);
  line-height: 1.5;
  margin: 0;
}

.lk-step__arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: #D5C7B5;
  font-size: 18px;
  pointer-events: none;
  z-index: 1;
}

.lk-step:last-child .lk-step__arrow {
  display: none;
}

/* -----------------------------------------------------------
   App Section
   ----------------------------------------------------------- */
.lk-app {
  background: var(--lk-bg-1);
  padding: 40px 0;
}

.lk-app__card {
  background: var(--lk-bg-3);
  border-radius: var(--lk-radius-block);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.lk-app__media {
  flex: 0 0 38%;
  max-width: 360px;
  display: flex;
  justify-content: center;
}

.lk-app__media img {
  width: 100%;
  height: auto;
  max-width: 320px;
  display: block;
  border-radius: 18px;
}

.lk-app__body {
  flex: 1 1 0;
}

.lk-app__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--lk-muted);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.lk-app__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--lk-ink);
  margin: 0 0 16px;
  line-height: 1.2;
}

.lk-app__lead {
  font-size: 14px;
  color: var(--lk-muted);
  margin: 0 0 20px;
  line-height: 1.55;
}

.lk-app__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.lk-app__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--lk-ink);
}

.lk-app__list li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(242, 140, 24, 0.12);
  color: var(--lk-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

.lk-app__qr {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lk-app__qrbox {
  border: 2px dashed #D5C7B5;
  padding: 16px;
  border-radius: 16px;
  background: #FFFFFF;
}

.lk-app__qrbox img {
  display: block;
  width: 120px;
  height: 120px;
}

.lk-app__qrtext {
  font-size: 11px;
  color: var(--lk-muted);
  text-align: center;
  margin: 0;
  max-width: 140px;
  line-height: 1.4;
}

.lk-app__stores {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lk-app__storebtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1c1917;
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  width: 140px;
  height: 44px;
}

.lk-app__storebtn:hover {
  background: #000;
  color: #FFFFFF;
  text-decoration: none;
}

.lk-app__storebtn i {
  font-size: 22px;
}

.lk-app__storebtn-meta {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.lk-app__storebtn-meta small {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 2px;
}

.lk-app__storebtn-meta strong {
  font-size: 14px;
  font-weight: 700;
}

/* -----------------------------------------------------------
   Business / Für Betriebe
   ----------------------------------------------------------- */
.lk-business {
  background: var(--lk-bg-1);
  padding: var(--lk-section-py) 0;
}

.lk-business__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.lk-business__copy {
  flex: 0 0 50%;
  max-width: 50%;
}

.lk-business__media {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.lk-business__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--lk-orange);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.lk-business__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--lk-ink);
  margin: 0 0 16px;
  line-height: 1.25;
}

.lk-business__lead {
  font-size: 14px;
  color: var(--lk-muted);
  margin: 0 0 20px;
  line-height: 1.6;
  max-width: 480px;
}

.lk-business__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.lk-business__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--lk-ink);
}

.lk-business__list li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(92, 143, 58, 0.12);
  color: var(--lk-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

.lk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--lk-radius-pill);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.lk-btn--primary {
  background: var(--lk-green);
  color: #FFFFFF;
}

.lk-btn--primary:hover {
  background: var(--lk-green-deep);
  color: #FFFFFF;
  text-decoration: none;
}

.lk-btn--ghost {
  background: #FFFFFF;
  color: var(--lk-ink);
  border: 1px solid var(--lk-line);
}

.lk-btn--ghost:hover {
  border-color: var(--lk-green);
  color: var(--lk-green);
  text-decoration: none;
}

.lk-business__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--lk-radius-card);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.lk-business__leaf {
  position: absolute;
  right: -16px;
  bottom: -24px;
  width: 80px;
  color: #C9B89A;
  opacity: 0.7;
}

/* -----------------------------------------------------------
   CTA Registration
   ----------------------------------------------------------- */
.lk-cta {
  background: var(--lk-bg-1);
  padding: 0 0 var(--lk-section-py);
}

.lk-cta__card {
  background: #FFFFFF;
  border: 1px solid var(--lk-line);
  border-radius: var(--lk-radius-card);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--lk-shadow-card);
}

.lk-cta__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lk-cta__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lk-bg-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lk-orange);
  font-size: 18px;
  flex-shrink: 0;
}

.lk-cta__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--lk-ink);
  margin: 0 0 4px;
}

.lk-cta__sub {
  font-size: 13px;
  color: var(--lk-muted);
  margin: 0;
}

.lk-cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.lk-cta__hint {
  font-size: 11px;
  color: var(--lk-muted);
  margin: 0;
}

/* -----------------------------------------------------------
   FAQ
   ----------------------------------------------------------- */
.lk-faq {
  background: var(--lk-bg-1);
  padding: 0 0 var(--lk-section-py);
}

.lk-faq__head {
  text-align: center;
  margin-bottom: 24px;
}

.lk-faq__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--lk-muted);
  text-transform: uppercase;
  margin: 0;
}

.lk-faq__divider {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--lk-orange);
  border-radius: 2px;
  margin: 12px auto 0;
}

.lk-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.lk-faq__item {
  background: #FFFFFF;
  border: 1px solid var(--lk-line);
  border-radius: 16px;
  padding: 4px 16px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  /* Prevent width jump on open: reserve the full container width */
  flex-shrink: 0;
}

.lk-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--lk-ink);
}

.lk-faq__item summary::-webkit-details-marker {
  display: none;
}

.lk-faq__item summary::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--lk-muted);
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.lk-faq__item[open] summary::after {
  transform: rotate(180deg);
}

.lk-faq__item p {
  font-size: 13px;
  color: var(--lk-muted);
  line-height: 1.6;
  padding: 0 0 14px;
  margin: 0;
}

/* -----------------------------------------------------------
   Bottom CTA
   ----------------------------------------------------------- */
.lk-bottom {
  background: var(--lk-bg-1);
  padding: 0 0 var(--lk-section-py);
}

.lk-bottom__card {
  background: var(--lk-bg-4);
  border-radius: var(--lk-radius-card);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.lk-bottom__copy {
  flex: 1 1 0;
}

.lk-bottom__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--lk-orange);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.lk-bottom__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--lk-ink);
  margin: 0 0 8px;
}

.lk-bottom__sub {
  font-size: 13px;
  color: var(--lk-muted);
  margin: 0 0 16px;
  line-height: 1.55;
  max-width: 540px;
}

.lk-bottom__media {
  flex: 0 0 36%;
  max-width: 320px;
}

.lk-bottom__media img {
  width: 100%;
  height: auto;
  border-radius: var(--lk-radius-card);
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* -----------------------------------------------------------
   Footer
   ----------------------------------------------------------- */
.lk-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--lk-line-soft);
  padding: 48px 0 24px;
}

.lk-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.lk-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.lk-footer__brand-tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.85px;
  color: var(--lk-muted);
  text-transform: uppercase;
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lk-footer h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--lk-muted);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.lk-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lk-footer__list li,
.lk-footer__list a {
  font-size: 13px;
  color: var(--lk-muted);
  text-decoration: none;
}

.lk-footer__list a:hover {
  color: var(--lk-green);
  text-decoration: none;
}

.lk-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lk-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lk-bg-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lk-muted);
  font-size: 14px;
  text-decoration: none;
}

.lk-footer__social a:hover {
  background: var(--lk-bg-4);
  color: var(--lk-green);
}

.lk-footer__bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--lk-line-soft);
  font-size: 12px;
  color: var(--lk-muted);
  text-align: left;
}

/* -----------------------------------------------------------
   Responsive
   ----------------------------------------------------------- */
@media (max-width: 991px) {
  body.lk-page {
    --lk-section-py: var(--lk-section-py-mobile);
  }

  .lk-hero {
    padding: 40px 0 56px;
    min-height: 0;
    /* wie Desktop: volle Breite, Höhe aus Bildseitenverhältnis */
    background-size: 100% auto;
    background-position: center top;
  }

  .lk-hero::before {
    background: linear-gradient(
      to bottom,
      var(--lk-bg-1) 0%,
      rgba(255, 247, 239, 0.92) 55%,
      rgba(255, 247, 239, 0.55) 75%,
      rgba(255, 247, 239, 0) 100%
    );
  }

  .lk-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .lk-hero__copy {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .lk-hero__title {
    font-size: 40px;
  }

  .lk-hero__sub {
    font-size: 16px;
  }

  .lk-search {
    max-width: 100%;
  }

  .lk-benefits {
    gap: 16px;
    flex-direction: column;
  }

  .lk-steps__grid {
    flex-direction: column;
  }

  .lk-step__arrow {
    display: none;
  }

  .lk-app__card {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .lk-app__media,
  .lk-app__body,
  .lk-app__qr {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .lk-app__qr {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .lk-business__inner {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .lk-business__copy,
  .lk-business__media {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .lk-business__title {
    font-size: 22px;
  }

  .lk-cta__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lk-cta__right {
    align-items: flex-start;
    width: 100%;
  }

  .lk-bottom__card {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .lk-bottom__media {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .lk-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .lk-nav {
    gap: 16px;
  }

  .lk-nav__link--hide-mobile {
    display: none;
  }
}

@media (max-width: 640px) {
  .lk-hero__title {
    font-size: 32px;
  }

  .lk-section__title {
    font-size: 22px;
  }

  .lk-app__title {
    font-size: 22px;
  }

  .lk-footer__grid {
    grid-template-columns: 1fr;
  }

  .lk-search {
    flex-wrap: wrap;
  }

  .lk-search__input {
    flex: 1 1 100%;
    padding: 10px 12px;
  }

  .lk-search__btn {
    width: 100%;
    margin-top: 4px;
  }
}
