/* Mahboobs Kitchen — Design System */
:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f7f6f3;
  --color-bg-dark: #0d0d0d;
  --color-text: #181818;
  --color-text-soft: #4a4a4a;
  --color-text-light: #f5f5f5;
  --color-primary: #e8590c;
  --color-primary-dark: #c4480a;
  --color-secondary: #5e9a1f;
  --color-secondary-light: #7cc224;
  --color-border: #e7e4dd;
  --container: 1180px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --ff-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --ff-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
img[hidden] { display: none; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1em; color: var(--color-text-soft); }

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

.section { padding: 88px 0; }
.section--soft { background: var(--color-bg-soft); }
.section--dark { background: var(--color-bg-dark); color: var(--color-text-light); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #cfcfcf; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--ff-head);
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--color-primary); color: #fff; box-shadow: 0 8px 20px rgba(232, 89, 12, 0.35); }
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--ghost { background: transparent; border-color: #fff; color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn--dark { background: var(--color-bg-dark); color: #fff; }
.btn--whatsapp { background: #25d366; color: #06210f; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: var(--color-bg-dark);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  padding: 10px 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.site-header .logo img { height: 38px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav .dropdown { position: relative; }
.main-nav .dropdown-panel {
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-width: 230px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
}
.main-nav .dropdown:hover .dropdown-panel,
.main-nav .dropdown:focus-within .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .dropdown-panel a { color: var(--color-text); display: block; padding: 9px 12px; border-radius: 6px; font-size: 0.92rem; }
.main-nav .dropdown-panel a:hover { background: var(--color-bg-soft); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 920px) {
  html, body { overflow-x: hidden; }
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: min(82vw, 340px); background: #0d0d0d; flex-direction: column; align-items: flex-start; padding: 90px 28px 28px; gap: 18px; transition: right 0.25s ease; overflow-y: auto; }
  .main-nav.is-open { right: 0; }
  .main-nav .dropdown-panel { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.06); box-shadow: none; display: none; }
  .main-nav .dropdown.is-open .dropdown-panel { display: block; }
  .main-nav .dropdown-panel a { color: #fff; }
  .nav-toggle { display: block; }
  .header-actions .btn--primary { padding: 10px 18px; font-size: 0.85rem; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.55) 45%, rgba(13,13,13,0.85) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.hero-content .eyebrow { color: var(--color-secondary-light); }
.hero-content h1 { color: #fff; max-width: 880px; }
.hero-content .lead { color: #e9e7e2; font-size: 1.15rem; max-width: 620px; }
.hero-points { display: flex; gap: 22px; flex-wrap: wrap; margin: 28px 0; padding: 0; }
.hero-points li { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #fff; font-size: 0.95rem; }
.hero-points li::before { content: "✓"; color: var(--color-secondary-light); font-weight: 900; }
.hero-locations { margin-top: 30px; font-size: 0.9rem; color: #d8d6d0; }
.hero-locations a { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue span { width: 1px; height: 26px; background: #fff; display: block; animation: scrollcue 1.6s infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(-6px);} 50% {opacity:1;} 100% { opacity: 0; transform: translateY(10px);} }

/* Cards / grids */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 12px; }

/* Offer comparison cards (private vs. business in one section) */
.offer-combo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 780px) { .offer-combo { grid-template-columns: 1fr; } }
.offer-combo .card { display: flex; flex-direction: column; }
.offer-combo .card .btn { margin-top: auto; align-self: flex-start; }

/* Stat badges (alternative "why us" presentation) */
.stat-badges { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.stat-badge { background: #fff; border: 1px solid var(--color-border); border-radius: 14px; padding: 20px 28px; text-align: center; box-shadow: var(--shadow); min-width: 170px; }
.stat-badge strong { display: block; font-family: var(--ff-head); font-size: 1.25rem; color: var(--color-primary); }
.stat-badge span { font-size: 0.85rem; color: var(--color-text-soft); }

/* Compact process strip (alternative "ablauf" presentation) */
.process-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px; }
.process-strip .pill { background: #fff; border: 2px solid var(--color-border); border-radius: 999px; padding: 12px 20px; font-weight: 700; font-family: var(--ff-head); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.process-strip .pill .n { background: var(--color-primary); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; flex-shrink: 0; }
.process-strip .arrow { color: var(--color-border); font-size: 1.3rem; padding: 0 4px; }
@media (max-width: 780px) { .process-strip { flex-direction: column; align-items: stretch; } .process-strip .arrow { transform: rotate(90deg); text-align: center; } }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(232, 89, 12, 0.1);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.check-list li { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--color-border); font-weight: 500; }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: "🍽"; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.2; }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img { border-radius: 10px; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.3s ease; }
.gallery a:hover img { transform: scale(1.04); }
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Cuisine tiles */
.cuisine-tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.cuisine-tile img { width: 100%; height: 100%; object-fit: cover; }
.cuisine-tile .tile-label {
  position: absolute; inset: auto 0 0 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  color: #fff;
}
.cuisine-tile .tile-label span { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-secondary-light); margin-bottom: 4px; }
.cuisine-tile .tile-label h3 { color: #fff; margin: 0; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-bg-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 800;
  margin-bottom: 14px;
}

/* Location pills */
.location-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.location-pills a {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.location-pills a:hover { background: var(--color-bg-dark); color: #fff; border-color: var(--color-bg-dark); }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  color: var(--color-text);
}
.faq-q .plus { font-size: 1.4rem; color: var(--color-primary); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding-bottom: 18px; margin: 0; }

/* Multi-step form */
.lead-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; max-width: 620px; margin: 0 auto; }
.lead-form .progress { display: flex; gap: 8px; margin-bottom: 28px; }
.lead-form .progress span { height: 5px; flex: 1; background: var(--color-border); border-radius: 99px; overflow: hidden; }
.lead-form .progress span.active { background: var(--color-primary); }
.form-step { display: none; }
.form-step.is-active { display: block; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 20px 0; }
.choice-grid label {
  border: 2px solid var(--color-border);
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: all 0.15s ease;
}
.choice-grid input { display: none; }
.choice-grid input:checked + span,
.choice-grid label:has(input:checked) { color: var(--color-primary); }
.choice-grid label:has(input:checked) { border-color: var(--color-primary); background: rgba(232,89,12,0.06); }
.lead-form input[type="text"], .lead-form input[type="date"], .lead-form input[type="datetime-local"], .lead-form input[type="number"], .lead-form input[type="email"], .lead-form input[type="tel"], .lead-form input[type="password"], .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--ff-body);
  margin-top: 18px;
}
.lead-form label.field-label { font-weight: 700; display: block; margin-top: 10px; }
.form-nav { display: flex; justify-content: space-between; flex-wrap: wrap; margin-top: 28px; gap: 12px; }
@media (max-width: 480px) {
  .form-nav { flex-direction: column; align-items: stretch; }
  .form-nav .btn { width: 100%; text-align: center; }
}
.form-summary { background: var(--color-bg-soft); border-radius: 10px; padding: 18px; margin-bottom: 20px; font-size: 0.95rem; }
.form-summary strong { color: var(--color-text); }
.form-status { font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.form-status--ok { color: var(--color-secondary); }
.form-status--error { color: var(--color-primary); }
#sendRequestBtn:disabled { opacity: 0.7; cursor: default; transform: none; }

/* Sticky mobile CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; background: #fff; box-shadow: 0 -8px 24px rgba(0,0,0,0.12); padding: 8px 12px; gap: 8px; }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: 56px; } }
.sticky-cta a { flex: 1; text-align: center; justify-content: center; }
.sticky-cta .btn { padding: 9px 12px; font-size: 0.85rem; }

/* Footer */
.site-footer { background: var(--color-bg-dark); color: #cfcfcf; padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-grid h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-grid a { display: block; color: #cfcfcf; padding: 5px 0; font-size: 0.93rem; }
.footer-grid a:hover { color: #fff; }
.social-link { display: inline-flex !important; align-items: center; gap: 8px; }
.social-link svg { flex-shrink: 0; }
.link-reset { display: block; background: none; border: none; padding: 5px 0; color: #cfcfcf; font-size: 0.93rem; font-family: inherit; cursor: pointer; text-align: left; width: 100%; }
.link-reset:hover { color: #fff; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: 920px;
  margin: 0 auto;
  background: var(--color-bg-dark);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { flex: 1 1 320px; }
.cookie-banner__text p { margin: 0; font-size: 0.92rem; color: #e8e8e8; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: #9c9c9c; }


/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--color-text-soft); }
.tag { display: inline-block; background: rgba(94,154,31,0.12); color: var(--color-secondary); font-weight: 700; font-size: 0.78rem; padding: 6px 12px; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Diet tags */
.tag--vegetarisch { background: rgba(94,154,31,0.12); color: #4d8a18; }
.tag--geflugel { background: rgba(224,148,11,0.14); color: #b3760a; }
.tag--fleisch { background: rgba(196,42,42,0.12); color: #b32a2a; }
.tag--fisch { background: rgba(23,114,168,0.12); color: #15689e; }

/* Cuisine menu segments */
.cuisine-block { border-top: 5px solid var(--cuisine-color, var(--color-primary)); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); padding: 44px; margin-bottom: 40px; }
.cuisine-block .cuisine-head { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.cuisine-block .cuisine-head img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cuisine-block .cuisine-head h2 { margin: 0; color: var(--cuisine-color, var(--color-primary)); }
.cuisine-block--indisch { --cuisine-color: #e8590c; }
.cuisine-block--italienisch { --cuisine-color: #2e8b3d; }
.cuisine-block--sushi { --cuisine-color: #15689e; }
.menu-category { margin-top: 28px; }
.menu-category h3 { font-size: 1.05rem; border-bottom: 2px solid var(--color-border); padding-bottom: 10px; margin-bottom: 16px; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
@media (max-width: 640px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-dish { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--color-border); }
.menu-dish .dish-info strong { display: block; font-family: var(--ff-head); font-size: 0.98rem; }
.menu-dish .dish-info span { font-size: 0.85rem; color: var(--color-text-soft); }

/* Business-Kunden-Portal */
.search-input { width: 100%; padding: 14px 16px; border: 2px solid var(--color-border); border-radius: 10px; font-size: 1rem; font-family: var(--ff-body); margin-bottom: 20px; }
#companiesTable, #offerRequestsList, #companyHistoryPanel, #transactionHistory { overflow-x: auto; }
.data-table { width: 100%; min-width: 560px; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.data-table th, .data-table td { padding: 12px 16px; border-bottom: 1px solid var(--color-border); text-align: left; font-size: 0.92rem; }
.data-table th { background: var(--color-bg-soft); font-family: var(--ff-head); font-weight: 600; }
.data-table tbody tr:hover { background: var(--color-bg-soft); cursor: pointer; }
.data-table tbody tr:last-child td { border-bottom: none; }
.status-pill { display: inline-block; padding: 4px 12px; border-radius: 99px; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.status-pill--active { background: rgba(94,154,31,0.12); color: var(--color-secondary); }
.status-pill--pending { background: rgba(224,148,11,0.14); color: #b3760a; }
.status-pill--inactive { background: rgba(120,120,120,0.14); color: #5a5a5a; }
.status-pill--lead { background: rgba(120,120,120,0.14); color: #5a5a5a; }
.status-pill--contacted { background: rgba(224,148,11,0.14); color: #b3760a; }
.status-pill--customer { background: rgba(94,154,31,0.12); color: var(--color-secondary); }
.status-pill--lost { background: rgba(179,42,42,0.12); color: #b32a2a; }
.prospect-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.offer-tile { transition: transform 0.15s ease, box-shadow 0.15s ease; }
.offer-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); }
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.modal-overlay[hidden] { display: none; }
.modal-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 560px; width: 100%; padding: 36px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-box img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); margin-bottom: 20px; display: block; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--color-text-soft); line-height: 1; padding: 4px 8px; }

.mk-card { max-width: 380px; aspect-ratio: 1.586; padding: 28px 30px; border-radius: 18px; background: linear-gradient(135deg, #232323 0%, #0d0d0d 60%, #2b2b2b 100%); box-shadow: var(--shadow); color: #fff; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.mk-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(232,89,12,0.18), transparent 55%); pointer-events: none; }
.mk-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mk-card__logo { height: 30px; width: auto; }
.mk-card__label { font-family: var(--ff-head); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); font-weight: 700; }
.mk-card__number { font-family: var(--ff-head); font-size: 1.4rem; letter-spacing: 0.12em; margin-top: 18px; }
.mk-card__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-top: 18px; }
.mk-card__field-label { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.mk-card__name { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.mk-card__points { text-align: right; }
.mk-card__points-value { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 700; color: var(--color-primary); line-height: 1; }
@media (max-width: 480px) { .mk-card { max-width: 100%; } }

/* MK Business Karte – Verkaufsseite */
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.mk-hero__note { margin-top: 20px; font-size: 0.88rem; color: var(--color-text-soft); }

.mk-landing-hero { position: relative; padding: 170px 0 90px; overflow: hidden; color: #fff; }
.mk-landing-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.mk-landing-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.92) 55%, rgba(10,10,10,0.97) 100%); }
.mk-landing-hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas: "heading card" "body card";
  gap: 56px; align-items: center;
}
.mk-landing-hero__grid .mk-hero__heading { grid-area: heading; }
.mk-landing-hero__grid .mk-hero__card-wrap { grid-area: card; }
.mk-landing-hero__grid .mk-hero__body { grid-area: body; }
.mk-landing-hero h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 18px; color: #fff; }
.mk-landing-hero .lead { color: rgba(255,255,255,0.85); }
.mk-landing-hero .mk-hero__note { color: rgba(255,255,255,0.6); }
@media (max-width: 880px) {
  .mk-landing-hero__grid { grid-template-columns: 1fr; grid-template-areas: "heading" "card" "body"; }
  .mk-landing-hero { padding: 150px 0 60px; }
  .mk-hero__heading { margin-bottom: 8px; }
  .mk-hero__body { margin-top: 8px; }
}

.mk-hero__card-wrap { display: flex; justify-content: center; perspective: 1200px; }
.mk-card--hero { max-width: 420px; width: 100%; box-shadow: 0 30px 60px rgba(0,0,0,0.35); animation: mkCardFloat 6s ease-in-out infinite; }
@keyframes mkCardFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
.mk-card__shine { position: absolute; top: -60%; left: -30%; width: 50px; height: 220%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent); transform: rotate(20deg) translateX(-200%); animation: mkCardShine 4.5s ease-in-out infinite; }
@keyframes mkCardShine {
  0%, 55% { transform: rotate(20deg) translateX(-200%); }
  100% { transform: rotate(20deg) translateX(500%); }
}
@media (prefers-reduced-motion: reduce) {
  .mk-card--hero, .mk-card__shine { animation: none; }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.compare-card { border-radius: var(--radius); padding: 32px; }
.compare-card--bad { background: rgba(196,42,42,0.06); border: 1px solid rgba(196,42,42,0.18); }
.compare-card--good { background: rgba(94,154,31,0.08); border: 1px solid rgba(94,154,31,0.25); }
.compare-card h3 { margin-top: 0; }
.compare-card ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.compare-card li { font-weight: 500; color: rgba(255,255,255,0.92); }

.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.spotlight img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.spotlight--reverse { grid-template-columns: 1fr 1fr; }
.spotlight--reverse img { order: 2; }
@media (max-width: 880px) {
  .spotlight, .spotlight--reverse { grid-template-columns: 1fr; }
  .spotlight--reverse img { order: 0; }
}

.stat-callout { background: linear-gradient(135deg, rgba(232,89,12,0.12), rgba(255,255,255,0.03)); border: 1px solid rgba(232,89,12,0.3); border-radius: 24px; padding: 56px 40px; max-width: 640px; margin: 0 auto; }
.stat-callout__number { font-family: var(--ff-head); font-size: clamp(3rem, 8vw, 5rem); color: var(--color-primary); font-weight: 800; line-height: 1; }

.perk-tile { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.perk-tile:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

.combo-card { overflow: hidden; padding: 0 !important; }
.combo-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.combo-card__body { padding: 24px 32px 32px; }
.combo-card .tag { margin-bottom: 10px; }
@media (max-width: 640px) { .combo-card img { height: 220px; } }
.combo-menu { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.combo-menu li { font-size: 0.85rem; color: var(--color-text-soft); padding-top: 8px; border-top: 1px dashed var(--color-border); }
.combo-menu li:first-child { border-top: none; padding-top: 0; }
.combo-menu li span { display: block; font-weight: 700; color: var(--color-text); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }

.savings-bars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.savings-bar-row { display: flex; align-items: center; gap: 14px; }
.savings-bar-label { width: 150px; flex-shrink: 0; font-size: 0.85rem; color: rgba(255,255,255,0.75); text-align: right; }
.savings-bar-track { flex: 1; height: 14px; border-radius: 99px; background: rgba(255,255,255,0.1); overflow: hidden; }
.savings-bar { height: 100%; width: 0; border-radius: 99px; transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.savings-bar--full { background: rgba(255,255,255,0.4); }
.savings-bar--discounted { background: var(--color-primary); }
.reveal.is-visible .savings-bar--full { width: 100%; }
.reveal.is-visible .savings-bar--discounted { width: 80%; }
.savings-bar-value { width: 80px; flex-shrink: 0; font-weight: 700; font-family: var(--ff-head); font-size: 0.92rem; }
@media (max-width: 640px) {
  .stat-callout { padding: 36px 22px; }
  .savings-bar-row { flex-wrap: wrap; gap: 6px 10px; }
  .savings-bar-label { width: auto; order: 1; text-align: left; font-size: 0.8rem; }
  .savings-bar-value { width: auto; order: 2; margin-left: auto; }
  .savings-bar-track { order: 3; flex: 1 1 100%; height: 12px; }
}

.perk-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.perk-list li { display: flex; align-items: center; gap: 14px; font-weight: 500; }
.icon-badge--sm { width: 38px; height: 38px; border-radius: 11px; font-size: 1.05rem; margin-bottom: 0; flex-shrink: 0; }

.perk-list--rich { gap: 10px; }
.perk-list--rich li { align-items: flex-start; padding: 12px; border-radius: 14px; margin: -12px; transition: transform 0.25s ease, background 0.25s ease; }
.perk-list--rich li:hover { transform: translateX(8px); background: rgba(255,255,255,0.05); }
.perk-list--rich .icon-badge { margin-top: 2px; background: linear-gradient(135deg, rgba(232,89,12,0.25), rgba(232,89,12,0.08)); }
.perk-list--rich strong { display: block; font-family: var(--ff-head); color: #fff; margin-bottom: 4px; }
.perk-list--rich p { margin: 0; color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* Dunkle Kacheln innerhalb der MK Business Karte Verkaufsseite */
.section--dark .combo-card,
.section--dark .perk-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
.section--dark .combo-card h3,
.section--dark .perk-tile h3 { color: #fff; }
.section--dark .combo-card .muted,
.section--dark .perk-tile .muted { color: rgba(255,255,255,0.6); }
.section--dark .combo-card .tag { background: rgba(232,89,12,0.16); color: var(--color-primary); }
.section--dark .combo-menu li { color: rgba(255,255,255,0.6); border-top-color: rgba(255,255,255,0.1); }
.section--dark .combo-menu li span { color: #fff; }
.section--dark .spotlight p { color: rgba(255,255,255,0.75); }
.section--dark .perk-tile .icon-badge { font-family: var(--ff-head); font-weight: 800; }

.presentation-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 300; background: var(--color-primary); color: #fff; text-align: center; font-weight: 700; padding: 10px 16px; font-size: 0.88rem; }
.presentation-banner[hidden] { display: none; }
.presentation-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; background: #0d0d0d; color: #fff; padding: 16px 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; box-shadow: 0 -8px 24px rgba(0,0,0,0.3); }
.presentation-bar[hidden] { display: none; }
.presentation-bar__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.presentation-bar__link { font-size: 0.78rem; color: rgba(255,255,255,0.6); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60vw; }
.presentation-bar__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.presentation-bar .btn { padding: 9px 16px; font-size: 0.82rem; }
@media (max-width: 640px) {
  .presentation-bar { flex-direction: column; align-items: stretch; }
  .presentation-bar__link { max-width: 100%; }
  .presentation-bar__actions { flex-direction: column; }
}

.mk-showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mk-showcase__images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mk-showcase__images img { width: 100%; height: 170px; object-fit: cover; border-radius: 14px; display: block; box-shadow: 0 14px 30px rgba(0,0,0,0.3); }
.mk-showcase__text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.65; margin-top: 16px; }
@media (max-width: 880px) {
  .mk-showcase__grid { grid-template-columns: 1fr; gap: 28px; }
  .mk-showcase__images img { height: 140px; }
}

.mk-offer-hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: #0d0d0d; color: #fff; padding: 130px 0 60px; }
.mk-offer-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mk-offer-hero__grid[hidden] { display: none; }
.mk-offer-hero__image img { width: 100%; border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.mk-offer-hero__body .eyebrow { color: var(--color-primary); }
.mk-offer-hero__body h1 { margin-top: 8px; }
.mk-offer-hero__body p.lead { color: rgba(255,255,255,0.78); }
.mk-offer-welcome { display: inline-block; background: rgba(232,89,12,0.18); color: var(--color-primary); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; }
.mk-offer-welcome[hidden] { display: none; }
#offerNotFound h1 { color: #fff; }
#offerNotFound p.lead { color: rgba(255,255,255,0.78); }
@media (max-width: 880px) {
  .mk-offer-hero { min-height: auto; padding: 110px 0 90px; }
  .mk-offer-hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .mk-offer-hero__image { order: -1; }
  .mk-offer-hero__image img { max-height: 220px; object-fit: cover; }
}
