/* ===========================================================
   Jens Jacob Film — Landingpage "Videoproduktion mit dem Smartphone"
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #14161c;
  --ink2:       #565f6c;
  --ink3:       #8b93a1;
  --bg:         #f7f6f2;
  --surface:    #ffffff;
  --dark:       #14161c;
  --dark2:      #1d2029;
  --accent:     #ff4d2e;
  --accent-lt:  #ff6c4f;
  --accent-dim: rgba(255,77,46,.09);
  --accent-line:rgba(255,77,46,.28);
  --line:       rgba(20,22,28,.1);
  --line2:      rgba(20,22,28,.06);
  --radius:     10px;
  --radius-lg:  22px;
  --max:        1160px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
section { padding: 5.5rem 0; }
@media (max-width: 700px) { section { padding: 3.5rem 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); }

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.2; margin-bottom: .6rem; }
.section-sub { color: var(--ink2); max-width: 620px; margin-bottom: 2.75rem; font-size: 1.02rem; }
.section-head { max-width: 700px; margin: 0 auto 2.75rem; text-align: center; }
.section-head .section-sub { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  padding: .95rem 1.8rem; border-radius: 100px; border: none; cursor: pointer;
  transition: all .18s; text-decoration: none; white-space: nowrap;
}
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 10px 28px rgba(255,77,46,.35); }
.btn-accent:hover { background: var(--accent-lt); text-decoration: none; color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: #fff; text-decoration: none; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; text-decoration: none; color: #fff; }

/* TOPBAR */
.topbar { background: var(--dark); color: rgba(255,255,255,.7); font-size: .8rem; padding: .55rem 0; }
.topbar-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.topbar a { color: rgba(255,255,255,.85); font-weight: 600; }
.topbar a:hover { color: #fff; }

/* NAV */
.site-header { background: var(--surface); border-bottom: 1px solid var(--line2); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: .65rem; }
.logo-mark { width: 38px; height: 38px; background: var(--dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: #fff; position: relative; }
.logo-mark::after { content: ""; position: absolute; top: -3px; right: -3px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 2px #fff; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); line-height: 1.15; }
.logo-text span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; color: var(--ink3); text-transform: uppercase; letter-spacing: .08em; }
.nav-links { display: flex; gap: .1rem; }
.nav-links a { color: var(--ink2); font-size: .87rem; font-weight: 600; padding: .5rem .85rem; border-radius: var(--radius); }
.nav-links a:hover { color: var(--accent); background: var(--accent-dim); text-decoration: none; }
@media (max-width: 860px) { .nav-links { display: none; } }
.nav-cta { font-size: .85rem !important; padding: .6rem 1.3rem !important; }

/* HERO */
.hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; padding: 4.5rem 0 5rem; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,77,46,.28), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,77,46,.14), transparent 40%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16); border-radius: 100px; padding: .35rem 1rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: #fff; margin-bottom: 1.6rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); line-height: 1.14; margin-bottom: 1.3rem; color: #fff; }
.hero h1 em { font-style: normal; color: var(--accent-lt); }
.hero-lead { font-size: 1.08rem; color: rgba(255,255,255,.72); max-width: 480px; margin-bottom: 2.2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-facts { display: flex; gap: 2.2rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.7rem; }
.fact-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--accent-lt); line-height: 1; }
.fact-lbl { font-size: .74rem; color: rgba(255,255,255,.55); margin-top: .3rem; }

/* Hero photo */
.phone-stage { display: flex; justify-content: center; position: relative; }
.hero-photo-frame { width: 100%; max-width: 380px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.08); }
.hero-photo-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.float-chip { position: absolute; background: #fff; color: var(--ink); border-radius: 12px; padding: .6rem .9rem; font-size: .78rem; font-weight: 700; box-shadow: 0 14px 34px rgba(0,0,0,.25); display: flex; align-items: center; gap: .5rem; }
.float-chip.chip-1 { top: 8%; left: -8%; }
.float-chip.chip-2 { bottom: 8%; right: -8%; }
.float-chip .ic { width: 22px; height: 22px; border-radius: 6px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: .8rem; }
@media (max-width: 500px) { .float-chip { display: none; } }

/* LOGO STRIP */
.logo-strip { background: var(--surface); border-bottom: 1px solid var(--line2); padding: 1.6rem 0; }
.logo-strip-inner { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; justify-content: center; color: var(--ink3); font-size: .8rem; font-weight: 600; }
.logo-strip-inner strong { color: var(--ink2); }

/* INTRO */
.intro { background: var(--surface); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
@media (max-width: 800px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-quote { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.4; color: var(--ink); border-left: 3px solid var(--accent); padding-left: 1.4rem; }
.intro-text p { color: var(--ink2); margin-bottom: 1.1rem; }

/* CONTENT GRID (Seminarinhalte) */
.content-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
@media (max-width: 800px) { .content-groups { grid-template-columns: 1fr; } }
.content-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; }
.content-card-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.content-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--accent-dim); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.content-card h3 { font-size: 1.05rem; }
.content-card ul { display: flex; flex-direction: column; gap: .65rem; }
.content-card li { color: var(--ink2); font-size: .93rem; padding-left: 1.3rem; position: relative; }
.content-card li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ZIELGRUPPE */
.audience-wrap { background: var(--dark2); color: #fff; }
.audience-grid { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 3rem; align-items: center; }
@media (max-width: 850px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-wrap h2 { color: #fff; }
.audience-wrap .section-sub { color: rgba(255,255,255,.6); }
.pill-grid { display: flex; flex-wrap: wrap; gap: .7rem; }
.pill { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #fff; padding: .65rem 1.2rem; border-radius: 100px; font-size: .88rem; font-weight: 600; }
.req-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; }
.req-box h4 { font-family: var(--font-display); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-lt); margin-bottom: .8rem; }
.req-box p { color: rgba(255,255,255,.7); font-size: .93rem; }

/* ABLAUF TIMELINE (horizontal) */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 850px) { .timeline { grid-template-columns: 1fr; } }
.tl-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.7rem; position: relative; }
.tl-num { font-family: var(--font-display); font-size: .78rem; font-weight: 700; color: var(--accent); letter-spacing: .08em; margin-bottom: .9rem; display: block; }
.tl-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.tl-card p { color: var(--ink2); font-size: .92rem; }
.tl-card.is-highlight { border-color: var(--accent-line); box-shadow: 0 18px 40px rgba(255,77,46,.12); }
.tl-tag { position: absolute; top: -12px; right: 1.4rem; background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700; padding: .3rem .7rem; border-radius: 100px; text-transform: uppercase; letter-spacing: .05em; }

/* DOZENT */
.tutor-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.4rem; display: grid; grid-template-columns: auto 1fr; gap: 2.2rem; align-items: start; }
@media (max-width: 700px) { .tutor-card { grid-template-columns: 1fr; text-align: left; } }
.tutor-avatar { width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(145deg, var(--dark), var(--dark2)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; font-weight: 700; flex-shrink: 0; position: relative; overflow: hidden; }
.tutor-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tutor-avatar::after { content: ""; position: absolute; bottom: 4px; right: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; z-index: 1; }
.tutor-name { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: .15rem; }
.tutor-role { color: var(--accent); font-weight: 600; font-size: .88rem; margin-bottom: 1.1rem; }
.tutor-bio p { color: var(--ink2); margin-bottom: .9rem; font-size: .96rem; }
.tutor-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.tutor-tags span { background: var(--accent-dim); color: var(--accent); font-size: .78rem; font-weight: 700; padding: .35rem .8rem; border-radius: 100px; }
.tutor-clients { margin-top: 1.4rem; font-size: .85rem; color: var(--ink3); }
.tutor-clients strong { color: var(--ink2); }

/* BOOKING / FORM */
.booking-wrap { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.booking-wrap::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,77,46,.22), transparent 45%); }
.booking-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: start; }
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } }
.booking-wrap h2 { color: #fff; }
.booking-info p { color: rgba(255,255,255,.68); margin-bottom: 1.6rem; }
.contact-line { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.contact-line .ic { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-lt); }
.contact-line a, .contact-line span.val { color: #fff; font-weight: 600; }
.booking-form { background: var(--surface); border-radius: var(--radius-lg); padding: 2.2rem; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .8rem; font-weight: 700; margin-bottom: .4rem; color: var(--ink2); }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .93rem; background: var(--bg); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: .78rem; color: var(--ink3); margin-top: .8rem; }
.form-success { display: none; text-align: center; padding: 2.2rem 1rem; }
.form-success .ic-big { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-dim); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; }
.form-success h3 { margin-bottom: .5rem; }
.form-success p { color: var(--ink2); font-size: .93rem; }

/* MOBILE STICKY CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); padding: .8rem 1.2rem; display: none; align-items: center; justify-content: space-between; gap: 1rem; z-index: 200; box-shadow: 0 -8px 24px rgba(0,0,0,.2); }
.sticky-cta span { color: #fff; font-size: .82rem; font-weight: 600; }
@media (max-width: 700px) { .sticky-cta.is-visible { display: flex; } }

/* FOOTER */
.site-footer { background: var(--dark2); color: rgba(255,255,255,.55); padding: 3rem 0 1.6rem; font-size: .85rem; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-family: var(--font-display); font-weight: 700; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.6); }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; }

/* LEGAL PAGES (impressum / datenschutz) */
.legal-header { background: var(--dark); color: #fff; padding: 3.4rem 0 2.4rem; }
.legal-header h1 { color: #fff; font-size: 2rem; }
.legal-header p { color: rgba(255,255,255,.65); margin-top: .5rem; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 3rem 1.75rem 5rem; }
.legal-content h2 { font-size: 1.15rem; margin: 2.2rem 0 .8rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink2); font-size: .95rem; margin-bottom: .6rem; }
.legal-content a { color: var(--accent); }
.legal-content ul { padding-left: 1.2rem; list-style: disc; }
.legal-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1rem 0 1.6rem; }
.legal-updated { font-size: .82rem; color: var(--ink3); margin-top: 2.5rem; }
