/* ============================================================
   livemedal — gemeinsames Stylesheet
   ============================================================ */

/* Lokale Schriftart */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/nunito-sans-latin.woff2') format('woff2-variations'),
       url('fonts/nunito-sans-latin.woff2') format('woff2'),
       url('fonts/nunito-sans-variable.ttf') format('truetype-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Design Tokens */
:root {
  --lm-petrol: #1D9E75;
  --lm-petrol-dark: #085041;
  --lm-petrol-light: #E1F5EE;
  --lm-black: #111111;
  --lm-warm-white: #F5F5F0;
  --lm-gray: #888780;
  --lm-white: #ffffff;
  --lm-font: 'Nunito Sans', sans-serif;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--lm-font); }

body {
  background: var(--lm-warm-white);
  color: var(--lm-black);
  line-height: 1.6;
}

/* ============================================================
   Navigation
   ============================================================ */
.burger { display: none; }
.mobile-menu { display: none; }

nav {
  background: var(--lm-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(60px, calc(50vw - 640px));
  height: 72px;
  border-bottom: 1px solid #e8e8e3;
  position: sticky;
  top: 0;
  z-index: 100;
}

.wordmark {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.wordmark .live { color: var(--lm-black); }
.wordmark .medal { color: var(--lm-petrol); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--lm-black);
  opacity: 0.65;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  background: var(--lm-petrol);
  color: var(--lm-white);
  padding: 11px 24px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--lm-petrol-dark); }

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 11px 24px;
  border: 1.5px solid rgba(255,255,255,0.25);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.5); }

.btn-white {
  background: var(--lm-white);
  color: var(--lm-petrol-dark);
  padding: 13px 28px;
  border: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 0;
  height: min(70vh, 50vw);
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px 0 20px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(17,17,17,0.1) 0%, rgba(17,17,17,0.75) 60%, rgba(17,17,17,0.97) 100%),
    linear-gradient(to right, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.0) 35%, rgba(17,17,17,0.0) 65%, rgba(17,17,17,0.85) 100%),
    linear-gradient(to bottom, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.0) 25%, rgba(17,17,17,0.0) 75%, rgba(17,17,17,0.9) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--lm-black);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--lm-petrol);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: block;
}

.hero-headline {
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 800;
  color: var(--lm-white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  max-width: 460px;
}
.hero-headline .accent { color: var(--lm-petrol); }

.hero-sub-headline {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin-bottom: 16px;
  max-width: 440px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}

.hero-actions { display: flex; gap: 12px; align-items: center; }

.hero-claim {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.hero-claim-line { width: 32px; height: 1px; background: rgba(255,255,255,0.2); }
.hero-claim-text {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 80px;
}

.logo-svg { width: 220px; height: 220px; }

.logo-path {
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill-opacity: 0;
  transition: fill-opacity 0.6s ease;
}
.logo-path.filled { fill-opacity: 1; }

.laser-glow {
  filter: drop-shadow(0 0 6px #35ae73) drop-shadow(0 0 12px #35ae73);
}

/* ============================================================
   Sektionen
   ============================================================ */
section { padding: 80px max(60px, calc(50vw - 640px)); }
.section-white { background: var(--lm-warm-white); }
.section-warm { background: var(--lm-warm-white); }
.section-petrol { background: var(--lm-petrol); overflow: hidden; position: relative; }

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lm-petrol);
  margin-bottom: 16px;
  display: block;
}
.label-muted {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: block;
}

h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--lm-black);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
h2.white { color: var(--lm-white); }

.subtext {
  font-size: 15px;
  color: var(--lm-gray);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 52px;
}
.subtext-white {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
}

/* ============================================================
   Kennzahlen
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-num {
  font-size: clamp(40px, 4.5vw, 65px);
  font-weight: 900;
  color: var(--lm-petrol);
  letter-spacing: -2px;
  line-height: 1;
}
.stat-suffix {
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}
.stat-suffix.visible { opacity: 1; }
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  color: var(--lm-gray);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ============================================================
   Leistungen
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: #D4D4CF;
  padding: 32px 28px;
  border-top: 3px solid var(--lm-petrol);
  border-radius: 8px;
}
.value-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--lm-petrol);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  display: block;
}
.value-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--lm-black);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.value-text {
  font-size: 14px;
  color: var(--lm-gray);
  line-height: 1.65;
}

/* ============================================================
   Ablauf
   ============================================================ */
.process-scroll-wrapper {
  height: 350vh;
}
.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.process-sticky .section-white {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}
.process-timeline {
  position: relative;
  margin-top: 40px;
}
.timeline-track {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 2px;
  background: #e8e8e3;
  z-index: 0;
}
.timeline-track-fill {
  height: 100%;
  width: 0;
  background: var(--lm-petrol);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 0;
}
.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--lm-petrol-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
  color: var(--lm-petrol);
}
.step-icon-wrap svg {
  width: 28px;
  height: 28px;
}
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lm-petrol);
  margin: 16px 0;
  flex-shrink: 0;
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--lm-petrol);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.step-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--lm-black);
  margin-bottom: 8px;
}
.step-text {
  font-size: 13px;
  color: var(--lm-gray);
  line-height: 1.65;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

/* Smartphone Mockup */
.cta-phone-mockup {
  position: absolute;
  left: 62%;
  top: 50%;
  transform: translateX(calc(-50% - 800px)) translateY(-50%);
  opacity: 0;
  transition: transform 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 2s ease;
}
.cta-phone-mockup.visible {
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}
.phone-scene {
  perspective: 900px;
}
.phone-body {
  width: 210px;
  height: 360px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 14px;
  gap: 12px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.35),
    0 16px 32px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset -1px 0 0 rgba(255,255,255,0.08),
    6px 6px 0 rgba(0,0,0,0.15),
    12px 12px 0 rgba(0,0,0,0.08);
  transform: rotateY(-18deg) rotateX(4deg);
  transform-style: preserve-3d;
  position: relative;
}
.phone-body::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.phone-notch {
  width: 52px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  flex-shrink: 0;
}
.phone-screen {
  flex: 1;
  width: 100%;
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.07), transparent);
  pointer-events: none;
}
.phone-screen-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
}
.phone-screen-label {
  font-size: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.phone-screen-divider {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.phone-screen-email {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  word-break: break-all;
}
.phone-screen-phone {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-align: center;
}
.phone-home-bar {
  width: 44px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Phone-Animationen */
@keyframes phone-breathe {
  0%, 100% { transform: rotateY(-18deg) rotateX(4deg) scale(1); }
  50%       { transform: rotateY(-18deg) rotateX(4deg) scale(1.025); }
}
@keyframes phone-shine {
  0%        { left: -80%; opacity: 0; }
  2%        { opacity: 1; }
  14%       { opacity: 1; left: 160%; }
  15%, 100% { left: 160%; opacity: 0; }
}

.cta-phone-mockup.visible .phone-body {
  animation: phone-breathe 3.5s ease-in-out 1.5s infinite;
}
.phone-screen {
  position: relative;
  overflow: hidden;
}
.phone-screen::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -80%;
  width: 40%;
  height: 140%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: skewX(-15deg);
  opacity: 0;
  pointer-events: none;
}
.cta-phone-mockup.visible .phone-screen::after {
  animation: phone-shine 7s ease-in-out 2.6s infinite;
}

/* Über uns */
.lm-quote {
  border-left: 3px solid var(--lm-petrol);
  margin: 40px 0;
  padding: 20px 28px;
  background: var(--lm-warm-white);
  border-radius: 8px;
}
.lm-quote p {
  font-size: 18px;
  font-weight: 700;
  color: var(--lm-black);
  line-height: 1.5;
  margin-bottom: 10px;
}
.lm-quote cite {
  font-size: 13px;
  color: var(--lm-gray);
  font-style: normal;
  letter-spacing: 0.02em;
  transition: opacity 0.6s ease;
}
.typewriter-cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--lm-petrol);
  animation: cursor-blink 0.7s step-end infinite;
}
.typewriter-cursor.hidden { display: none; }
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.about-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lm-petrol);
  margin: 48px 0 20px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.founder-card {
  background: var(--lm-warm-white);
  padding: 28px;
  border-top: 3px solid var(--lm-petrol);
  border-radius: 8px;
}
.founder-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--lm-black);
  margin-bottom: 4px;
}
.founder-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lm-petrol);
  margin-bottom: 14px;
}
.founder-text {
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
}
.standout-card {
  background: var(--lm-warm-white);
  padding: 28px;
  border-top: 3px solid var(--lm-petrol);
  border-radius: 8px;
}
.standout-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--lm-black);
  margin-bottom: 12px;
}
.standout-text {
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
}

/* Über uns auf Petrol-Hintergrund */
#ueber-uns .label { color: rgba(255,255,255,0.6); }
#ueber-uns h2 { color: white; }
#ueber-uns .subtext { color: rgba(255,255,255,0.75); }
#ueber-uns .about-section-title { color: rgba(255,255,255,0.55); }
#ueber-uns .lm-quote {
  background: rgba(0,0,0,0.15);
  border-left-color: white;
}
#ueber-uns .lm-quote p { color: white; }
#ueber-uns .lm-quote cite { color: rgba(255,255,255,0.6); }
#ueber-uns .founder-card,
#ueber-uns .standout-card {
  background: rgba(0,0,0,0.15);
  border-top-color: rgba(255,255,255,0.4);
}
#ueber-uns .founder-name,
#ueber-uns .standout-title { color: white; }
#ueber-uns .founder-role { color: rgba(255,255,255,0.6); }
#ueber-uns .founder-text,
#ueber-uns .standout-text { color: rgba(255,255,255,0.8); }

.cta-headline {
  font-size: 44px;
  font-weight: 800;
  color: var(--lm-white);
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.cta-phone {
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}
.cta-email {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--lm-black);
  padding: 52px max(60px, calc(50vw - 640px)) 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
footer .wordmark .live { color: var(--lm-white); }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col li a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color 0.15s;
}
.footer-col li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-claim {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   Unterseiten (Impressum, Datenschutz)
   ============================================================ */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 60px;
}

.page-content ul {
  margin: 6px 0 12px 1.2em;
  padding: 0;
}
.page-content li {
  font-size: 15px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 2px;
}

.page-content h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555550;
  margin-top: 28px;
  margin-bottom: 6px;
}

.page-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--lm-petrol);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

p {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.7;
}

.notice {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--lm-white);
  border-left: 3px solid var(--lm-petrol);
  font-size: 14px;
  color: var(--lm-gray);
}

/* Footer-Variante Unterseiten */
footer.simple {
  padding: 40px 60px;
  text-align: center;
}
footer.simple p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}
footer.simple .wordmark .live { color: var(--lm-white); }
footer.simple .wordmark { font-size: 18px; display: block; margin-bottom: 12px; }
footer.simple .footer-legal { display: flex; gap: 20px; justify-content: center; margin-top: 12px; }
footer.simple .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.6); text-decoration: none; }
footer.simple .footer-legal a:hover { color: white; }

/* ============================================================
   Mobile — Tablets (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 0 28px; }
  .nav-links { gap: 20px; }

  .hero {
    height: auto;
    min-height: unset;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 52px 28px 48px;
    gap: 0;
  }
  .hero-visual { display: none; }
  .hero-headline { font-size: 38px; }
  .hero-sub { font-size: 15px; }

  section { padding: 56px 28px; }

  .stats-grid { grid-template-columns: 1fr; gap: 32px; }

  .values-grid { grid-template-columns: 1fr; }

  .process-scroll-wrapper { height: auto; }
  .process-sticky { position: static; height: auto; overflow: visible; }
  .process-sticky .section-white { height: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .timeline-track { display: none; }
  .step-dot { display: none; }
  .process-step { padding: 20px; }
  .process-step:nth-child(odd) { border-right: 1px solid #e8e8e3; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid #e8e8e3; }

  .cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-phone-mockup { display: none; }
  .cta-headline { font-size: 30px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .page-content { padding: 52px 28px; }
  h1 { font-size: 32px; }
}

/* ============================================================
   Mobile — Smartphones (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .btn-primary { display: none; }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lm-black);
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: block !important;
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    background: var(--lm-white);
    border-bottom: 1px solid #e8e8e3;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    z-index: 150;
    transform: translateY(-4px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--lm-black);
    text-decoration: none;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0ec;
  }
  .mobile-menu-link:last-child {
    font-size: 15px;
    font-weight: 700;
    color: var(--lm-petrol);
    border-bottom: none;
  }
  .wordmark { font-size: 20px; }

  .hero { padding: 40px 20px 36px; }
  .hero-bg { object-fit: cover; object-position: center top; }
  .hero::before {
    background:
      linear-gradient(to bottom, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.85) 50%, rgba(17,17,17,0.96) 100%);
  }
  .hero-eyebrow { font-size: 10px; }
  .hero-headline { font-size: 30px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }

  section { padding: 44px 20px; }

  h2 { font-size: 26px; }

  .founder-grid { grid-template-columns: 1fr; gap: 16px; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid #e8e8e3; padding: 20px 0; }
  .process-step:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 20px 28px; }

  .page-content { padding: 36px 20px; }
  h1 { font-size: 26px; margin-bottom: 32px; }
  .page-content h2 { font-size: 13px; }
  .page-content p { font-size: 12px; }
  .page-content li { font-size: 12px; }
  .page-content .notice { font-size: 11px; }
  footer.simple { padding: 32px 20px; }
}

@media (min-width: 901px) {
  .process-step {
    opacity: 0.25;
    transition: opacity 0.4s ease;
  }
  .process-step.active {
    opacity: 1;
  }
}

/* ============================================================
   Breite Bildschirme — Gradient weiter nach innen
   ============================================================ */
@media (min-width: 1400px) {
  .hero::before {
    background:
      radial-gradient(ellipse at center, rgba(17,17,17,0.1) 0%, rgba(17,17,17,0.75) 55%, rgba(17,17,17,0.97) 100%),
      linear-gradient(to right, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.0) 42%, rgba(17,17,17,0.0) 58%, rgba(17,17,17,0.9) 100%),
      linear-gradient(to bottom, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.0) 25%, rgba(17,17,17,0.0) 75%, rgba(17,17,17,0.9) 100%);
  }
}
@media (min-width: 1900px) {
  .hero::before {
    background:
      radial-gradient(ellipse at center, rgba(17,17,17,0.1) 0%, rgba(17,17,17,0.8) 45%, rgba(17,17,17,0.97) 100%),
      linear-gradient(to right, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.0) 47%, rgba(17,17,17,0.0) 53%, rgba(17,17,17,0.95) 100%),
      linear-gradient(to bottom, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.0) 25%, rgba(17,17,17,0.0) 75%, rgba(17,17,17,0.9) 100%);
  }
}
