/* ==========================================================================
   NUMMEREINSMEDIA – Landingpage für Instagram-Anfragen (info.html)
   Wenig Text, viel Bild. Baut auf style.css auf (Farben, Schriften, Buttons).
   ========================================================================== */

/* Diese Seite hat bewusst keine Navigation – der Inhalt beginnt oben. */
.lp-topbar {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px var(--pad-x) 0;
}
.lp-topbar img { height: 38px; width: auto; display: block; }
.lp-topbar .wordmark { font-size: 16px; }

/* ---------- HERO ---------- */
.lp-hero {
  position: relative; overflow: hidden;
  padding: 30px var(--pad-x) clamp(32px, 6vw, 52px);
  text-align: center;
}
.lp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero-bg video, .lp-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lp-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 95% 75% at 50% 38%, rgba(11,11,13,0.44), rgba(11,11,13,0.78) 72%),
    linear-gradient(rgba(11,11,13,0.42), rgba(11,11,13,0.55) 55%, var(--bg));
}
.lp-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.lp-hero-inner::before {
  content: ""; position: absolute; inset: -30px -20px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(11,11,13,0.6), transparent 75%);
  z-index: -1; pointer-events: none;
}
.lp-hero h1 {
  font-family: var(--display); text-transform: uppercase; font-weight: 700;
  font-size: clamp(34px, 9.5vw, 60px); line-height: 1.0; letter-spacing: 0.015em;
  margin-top: 16px;
}
.lp-hero h1 em { font-style: normal; color: var(--accent); }
.lp-hero .lp-sub {
  margin: 14px auto 0; max-width: 34ch;
  font-size: clamp(15px, 4vw, 18px); color: var(--ink-dim);
}
.lp-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 15px; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.lp-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- ABSCHNITTE ----------
   Bewusst EINE durchgehende Fläche statt wechselnder Hintergründe.
   Getrennt wird nur durch eine feine Linie – das beruhigt die Seite spürbar. */
.lp-section { padding: clamp(44px, 8vw, 76px) var(--pad-x); }
.lp-section + .lp-section { border-top: 1px solid var(--line-soft); }
.lp-section.tight { padding-top: clamp(28px, 5vw, 44px); padding-bottom: clamp(28px, 5vw, 44px); }
.lp-showreel { padding-top: clamp(22px, 4vw, 34px); }
.lp-wrap { max-width: 720px; margin: 0 auto; }
.lp-wrap.wide { max-width: 1040px; }
.lp-head { text-align: center; margin-bottom: clamp(24px, 4vw, 38px); }
.lp-head .eyebrow { display: block; margin-bottom: 10px; }
.lp-head h2 {
  font-family: var(--display); text-transform: uppercase; font-weight: 700;
  font-size: clamp(25px, 6.5vw, 38px); line-height: 1.05; letter-spacing: 0.02em;
}
.lp-head p { margin: 12px auto 0; max-width: 42ch; color: var(--ink-dim); font-size: 15px; }
.lp-note {
  margin: 26px auto 0; max-width: 46ch; text-align: center;
  font-size: 13.5px; color: var(--ink-faint); line-height: 1.6;
}

/* ---------- VIDEOS ---------- */
.lp-tap {
  text-align: center; margin-bottom: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}
.lp-videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
/* Auch auf dem Handy zwei Spalten – so sieht man auf einen Blick mehr Arbeiten. */
@media (max-width: 700px) { .lp-videos { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.lp-videos .video-card { gap: 8px; }
.lp-videos .video-meta { gap: 1px; }
.lp-videos .video-client { font-size: clamp(15px, 4vw, 19px); }
.lp-videos .video-branche { font-size: 10px; letter-spacing: 0.16em; }
.lp-videos .video-play .ring { width: 52px; height: 52px; }
@media (max-width: 700px) { .lp-videos .video-play .ring { width: 44px; height: 44px; } }

/* ---------- ZAHLEN ---------- */
.lp-numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.lp-number {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 20px 12px; text-align: center; background: var(--bg-card);
}
.lp-number b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(24px, 6.5vw, 40px); line-height: 1; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.lp-number span { display: block; margin-top: 7px; font-size: 12px; color: var(--ink-dim); line-height: 1.45; }
.lp-number strong { color: var(--ink); font-weight: 600; }

/* ---------- KACHELN (was wir machen) ---------- */
.lp-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 760px) { .lp-grid4 { grid-template-columns: repeat(2, 1fr); } }
.lp-tile {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--bg-card); padding: 24px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.lp-tile .ico {
  width: 46px; height: 46px; color: var(--accent);
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lp-tile .ico svg { width: 21px; height: 21px; }
.lp-tile h3 {
  font-family: var(--display); text-transform: uppercase; font-weight: 700;
  font-size: 17px; letter-spacing: 0.05em;
}
.lp-tile p { color: var(--ink-dim); font-size: 13.5px; }

/* ---------- ABLAUF (kompakte Reihe) ---------- */
.lp-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  position: relative; max-width: 520px; margin: 0 auto;
}
.lp-flow::before {
  content: ""; position: absolute; top: 23px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
}
.lp-flow-item { display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; }
.lp-flow-item b {
  width: 46px; height: 46px; border-radius: 50%; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border: 1px solid var(--line);
  font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--accent);
}
.lp-flow-item span {
  font-size: 12.5px; color: var(--ink); text-align: center;
  font-weight: 600; letter-spacing: 0.03em;
}

/* ---------- ZITATE ---------- */
.lp-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 760px) { .lp-quotes { grid-template-columns: 1fr; gap: 12px; } }
.lp-quote {
  border-left: 2px solid var(--accent); padding: 2px 0 2px 16px; margin: 0;
}
.lp-quote blockquote { margin: 0; font-size: 15px; color: var(--ink); line-height: 1.5; }
.lp-quote figcaption {
  margin-top: 7px; font-size: 11.5px; color: var(--accent); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------- PAKETE ---------- */
.lp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 760px) { .lp-plans { grid-template-columns: 1fr; } }
.lp-plan {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 24px 20px; background: var(--bg-card); position: relative; text-align: center;
}
.lp-plan.top { border-color: var(--accent-deep); background: linear-gradient(180deg, rgba(200,162,75,0.09), var(--bg-card) 55%); }
.lp-plan .tag {
  display: inline-block; margin-bottom: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.lp-plan h3 {
  font-family: var(--display); text-transform: uppercase; font-weight: 700;
  font-size: 24px; letter-spacing: 0.05em; margin-bottom: 10px;
}
.lp-plan p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.7; }
.lp-plan p b { color: var(--ink); font-weight: 700; }

/* ---------- TEAM ---------- */
.lp-team { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 560px; margin: 0 auto; }
@media (max-width: 560px) { .lp-team { grid-template-columns: 1fr; } }
.lp-person {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 20px; display: flex; align-items: center; gap: 16px;
}
.lp-person .kuerzel {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  background: linear-gradient(160deg, rgba(200,162,75,0.25), rgba(200,162,75,0.05));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--accent-bright); letter-spacing: 0.05em;
}
.lp-person h3 {
  font-family: var(--display); text-transform: uppercase; font-weight: 700;
  font-size: 19px; letter-spacing: 0.04em;
}
.lp-person .rolle {
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}

/* ---------- FAQ ---------- */
.lp-faq { border-top: 1px solid var(--line-soft); max-width: 620px; margin: 0 auto; }
.lp-faq details { border-bottom: 1px solid var(--line-soft); }
.lp-faq summary {
  font-family: var(--body); font-size: 15.5px; font-weight: 600;
  text-transform: none; letter-spacing: 0; padding: 16px 4px;
}
.lp-faq .faq-body { font-size: 14.5px; padding-bottom: 18px; }

/* ---------- KONTAKT ---------- */
.lp-contact {
  background:
    radial-gradient(ellipse 80% 90% at 50% 0%, rgba(200,162,75,0.14), transparent 62%),
    var(--bg-raised);
  border-top: 1px solid var(--line);
}
.lp-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 460px; margin: 0 auto; }
@media (max-width: 480px) { .lp-actions { grid-template-columns: 1fr; } }
.lp-actions .btn { width: 100%; padding: 17px 20px; }
.lp-actions .span2 { grid-column: 1 / -1; }
.lp-actions .btn svg { width: 17px; height: 17px; flex: none; }
.lp-direct {
  margin: 24px auto 0; max-width: 460px;
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center;
  border-top: 1px solid var(--line-soft); padding-top: 20px;
  font-size: 14.5px;
}
.lp-direct a { color: var(--accent-bright); text-decoration: none; }
.lp-direct a:hover { text-decoration: underline; }

/* ---------- FUSSZEILE ---------- */
.lp-footer {
  padding: 30px var(--pad-x) 36px; text-align: center;
  border-top: 1px solid var(--line-soft); font-size: 12.5px; color: var(--ink-faint);
}
.lp-footer .socials { justify-content: center; margin: 0 0 16px; }
.lp-footer a { color: inherit; text-decoration: none; }
.lp-footer .lp-legal { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.lp-footer .lp-legal a { color: var(--ink-dim); }
.lp-footer .lp-legal a:hover { color: var(--accent-bright); }

/* ---------- STICKY CTA (mobil) ---------- */
.lp-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 25; display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 11, 13, 0.96);
  border-top: 1px solid var(--line);
  gap: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) { .lp-sticky { transition: none; } }
.lp-sticky .btn { flex: 1; padding: 14px 12px; font-size: 12px; letter-spacing: 0.08em; }
@media (max-width: 720px) {
  .lp-sticky { display: flex; }
  body.lp-body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
}
/* Während ein Video läuft, verschwindet die Leiste (verdeckt sonst die Steuerung) */
body.video-playing .lp-sticky { display: none; }
