/* =========================================================
   Sichtweb – Stylesheet
   Farben & Tokens leicht oben anpassbar
   ========================================================= */
:root {
  --ink:        #0d0e1a;
  --ink-2:      #15172a;
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg-soft:    #f5f6fb;
  --bg-tint:    #edeefb;
  --text:       #2b2d42;
  --muted:      #6b6e87;
  --line:       #e7e8f2;

  --primary:    #6d5efc;
  --primary-d:  #5a4ce6;
  --violet:     #a64bff;
  --accent:     #10e0b0;
  --accent-d:   #07b894;

  --grad:        linear-gradient(120deg, #6d5efc, #a64bff);
  --grad-accent: linear-gradient(120deg, #10e0b0, #6d5efc);

  --shadow-sm: 0 4px 14px -6px rgba(20, 22, 50, .18);
  --shadow:    0 18px 40px -20px rgba(60, 50, 140, .35);
  --shadow-lg: 0 40px 80px -30px rgba(60, 50, 140, .45);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw: 1140px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, .logo, .btn, .step-num, .badge-1 { font-family: 'Space Grotesk', 'Inter', sans-serif; }

.container { width: min(var(--maxw), 90%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--grad); color: #fff; font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .6rem 1.1rem; font-size: .92rem; }
.btn-block { width: 100%; padding: 1rem; font-size: 1.05rem; }
.btn-ghost {
  background: transparent; color: var(--primary);
  box-shadow: inset 0 0 0 2px var(--bg-tint);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--primary); filter: none; }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(0,0,0,.35); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; }
.logo {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: 1.35rem; color: var(--ink); letter-spacing: -.02em;
}
.logo span { color: var(--primary); }
.logo-mark { display: inline-flex; }
.logo-mark svg { display: block; border-radius: 8px; }

.menu { display: flex; align-items: center; gap: 1.35rem; }
.menu a { font-weight: 500; color: var(--text); transition: color .2s; white-space: nowrap; }
.menu a:not(.btn):hover { color: var(--primary); }
.menu .btn { color: #fff; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transform-origin: center; transition: transform .4s cubic-bezier(.68,-0.5,.27,1.5), opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(166,75,255,.14), transparent 60%),
    radial-gradient(700px 500px at -5% 10%, rgba(109,94,252,.12), transparent 55%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1.1rem;
}
.kicker.on-dark { color: #b9b1ff; }
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-accent); box-shadow: 0 0 0 4px rgba(16,224,176,.18); }

.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.6rem); line-height: 1.06; letter-spacing: -.03em;
  color: var(--ink); margin-bottom: 1.1rem;
}
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--muted); max-width: 30rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; color: var(--muted); font-weight: 500; font-size: .92rem; }

/* Hero-Visual */
.hero-visual { position: relative; min-height: 340px; }
.search-card {
  position: absolute; top: 0; right: 4%; z-index: 3; width: min(330px, 80%);
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); padding: 1rem; animation: floaty 6s ease-in-out infinite;
}
.search-bar {
  display: flex; align-items: center; gap: .55rem; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: .55rem .9rem;
  color: #9aa0bd; font-size: .9rem; margin-bottom: .85rem;
}
.search-result { display: flex; gap: .7rem; align-items: flex-start; }
.badge-1 {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; color: #fff; font-size: .85rem;
  display: grid; place-items: center; background: var(--grad); font-weight: 700;
}
.result-title { color: var(--primary); font-weight: 600; font-size: .95rem; }
.result-url { color: var(--accent-d); font-size: .8rem; }
.result-desc { color: var(--muted); font-size: .82rem; margin-top: .15rem; }

.browser {
  position: absolute; left: 0; bottom: 0; z-index: 1; width: min(380px, 92%);
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); animation: floaty 7s ease-in-out infinite reverse;
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: .6rem .8rem; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.browser-bar > span { width: 10px; height: 10px; border-radius: 50%; background: #d6d8e6; }
.browser-bar > span:nth-child(1){ background:#ff6058;} .browser-bar > span:nth-child(2){ background:#ffbd2e;} .browser-bar > span:nth-child(3){ background:#28c840;}
.browser-url { margin-left: .4rem; flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .72rem; color: var(--muted); padding: .2rem .7rem; }
.browser-body { padding: 1rem; }
.bb-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.bb-logo { width: 46px; height: 14px; border-radius: 5px; background: var(--grad); }
.bb-links { display: flex; gap: 6px; } .bb-links i { width: 22px; height: 7px; border-radius: 4px; background: var(--bg-tint); }
.bb-hero { background: var(--bg-soft); border-radius: 12px; padding: 1rem; }
.bb-h { width: 70%; height: 16px; border-radius: 6px; background: var(--ink); opacity: .85; margin-bottom: .6rem; }
.bb-p { width: 90%; height: 8px; border-radius: 4px; background: #cfd2e6; margin-bottom: .4rem; }
.bb-p.short { width: 60%; }
.bb-btn { width: 90px; height: 22px; border-radius: 999px; background: var(--grad-accent); margin-top: .8rem; }
.bb-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: .9rem; }
.bb-cards div { height: 42px; border-radius: 10px; background: var(--bg-tint); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head { max-width: 40rem; margin: 0 auto clamp(2rem, 4vw, 3.2rem); text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin-bottom: .7rem; }
.section-head .kicker { justify-content: center; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

.section-dark {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(166,75,255,.22), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(16,224,176,.12), transparent 55%),
    var(--ink);
  color: #cfd2e6;
}
.section-dark h2 { color: #fff; }
.section-dark .section-sub { color: #9aa0c2; }

/* ---------- Cards (Leistungen) ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  color: #fff; margin-bottom: 1rem;
}
.ico-design { background: linear-gradient(135deg,#6d5efc,#8b7bff); }
.ico-host   { background: linear-gradient(135deg,#a64bff,#c77bff); }
.ico-seo    { background: linear-gradient(135deg,#10e0b0,#06b894); }
.ico-img    { background: linear-gradient(135deg,#ff8a5b,#ff5f8f); }
.card h3 { font-size: 1.18rem; color: var(--ink); margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card-highlight { border-color: var(--primary); box-shadow: var(--shadow); }
.card-tag {
  position: absolute; top: 1.1rem; right: 1.1rem; font-family: 'Space Grotesk'; font-size: .72rem;
  font-weight: 600; color: var(--primary); background: var(--bg-tint); padding: .2rem .6rem; border-radius: 999px;
}
.tag-incl { color: var(--accent-d); background: rgba(16,224,176,.12); }

/* ---------- Komplett-Paket Banner ---------- */
.package-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.6rem; padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg); border: 1px solid var(--bg-tint);
  background: linear-gradient(120deg, rgba(109,94,252,.10), rgba(166,75,255,.10));
}
.package-bar-text h3 { color: var(--ink); font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: .3rem; }
.package-bar-text p { color: var(--muted); max-width: 46rem; }
.package-bar .btn { flex: 0 0 auto; }

/* ---------- Steps (Bestellablauf) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: s; }
.step {
  position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.6rem 1.3rem; backdrop-filter: blur(4px);
}
.step-num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 1.2rem; margin-bottom: 1rem;
}
.step h3 { color: #fff; font-size: 1.1rem; margin-bottom: .4rem; }
.step p { color: #9aa0c2; font-size: .94rem; }

/* ---------- Referenzen ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.work {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.work:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.work-thumb { position: relative; display: block; aspect-ratio: 16/11; overflow: hidden; }
.work-open {
  position: absolute; inset: 0; display: grid; place-items: center; font-weight: 600; color: #fff;
  background: rgba(13,14,26,.55); opacity: 0; transition: opacity .25s;
}
.work-thumb:hover .work-open { opacity: 1; }

/* Fake-Browser-Thumbnails (kein Bild nötig) */
.thumb-fake { width: 100%; height: 100%; display: flex; flex-direction: column; }
.tf-bar { display: flex; gap: 5px; padding: .5rem .6rem; background: #eceef6; }
.tf-bar span { width: 8px; height: 8px; border-radius: 50%; background: #cfd2e6; }
.tf-body { flex: 1; padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.tf-pink { background: radial-gradient(400px 200px at 80% 0%, #ffe3f1, transparent 60%), #fffaf3; }
.tf-dark { background: radial-gradient(400px 200px at 80% 0%, #2a2350, transparent 60%), #14121f; }
.tf-title { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.15rem; color: #c2156b; }
.tf-title.light { color: #fff; }
.tf-line { height: 8px; border-radius: 4px; background: #f3c9de; width: 80%; }
.tf-line.short { width: 55%; }
.tf-line.light { background: rgba(255,255,255,.25); }
.tf-pill { width: 92px; height: 24px; border-radius: 999px; background: #ff6fb3; margin-top: .3rem; }
.tf-pill.light { background: var(--accent); }
/* G'sBlendz21 – Barbershop (Brutalist: Bone/Ink/Cobalt/Lime) */
.tf-gs { background: #F1EEE4; border-top: 3px solid #14130E; }
.tf-title.gs { color: #14130E; font-weight: 700; text-transform: uppercase; letter-spacing: -.02em; }
.tf-title.gs span { color: #1E3CFF; }
.tf-line.gs { background: rgba(20,19,14,.22); }
.tf-pill.gs { width: 100px; background: #C8FF2D; border: 2px solid #14130E; border-radius: 3px; box-shadow: 3px 3px 0 #14130E; }

.work-meta { padding: 1.2rem 1.3rem 1.4rem; }
.work-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .6rem; }
.work-tags span { font-size: .74rem; font-weight: 600; color: var(--primary); background: var(--bg-tint); padding: .2rem .6rem; border-radius: 999px; }
.work-meta h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: .35rem; }
.work-meta p { color: var(--muted); font-size: .94rem; }

.work-cta { display: grid; place-items: center; border-style: dashed; background: var(--bg-soft); }
.work-cta-inner { text-align: center; padding: 2rem 1.5rem; }
.work-cta-inner h3 { color: var(--ink); font-size: 1.25rem; margin-bottom: .4rem; }
.work-cta-inner p { color: var(--muted); margin-bottom: 1.1rem; }

/* ---------- Testimonial ---------- */
.testimonial-sec { background: var(--bg-soft); }
.testimonial {
  position: relative; max-width: 48rem; margin-inline: auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem); box-shadow: var(--shadow);
}
.quote-mark {
  font-family: 'Space Grotesk'; font-size: 5rem; line-height: 1; color: var(--primary);
  opacity: .18; position: absolute; top: .6rem; left: 1.6rem;
}
.testimonial blockquote { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--ink); line-height: 1.5; font-weight: 500; }
.testimonial figcaption { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .15rem; }
.stars { color: #ffb400; letter-spacing: .1em; }
.testimonial figcaption strong { color: var(--ink); font-size: 1.05rem; }
.testimonial figcaption span:last-child { color: var(--muted); font-size: .9rem; }

/* ---------- Was ist SEO ---------- */
.section-soft { background: var(--bg-soft); }
.seo-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.seo-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--ink); margin-bottom: 1rem; line-height: 1.12; }
.seo-lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 1.3rem; }
.seo-lead strong, .seo-analogy strong, .seo-points strong { color: var(--ink); }
.seo-analogy { display: flex; gap: .9rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.4rem; box-shadow: var(--shadow-sm); }
.seo-analogy-ico { font-size: 1.6rem; line-height: 1; }
.seo-analogy p { color: var(--text); }
.seo-points { display: grid; gap: 1rem; }
.seo-points li { display: flex; gap: .8rem; align-items: flex-start; }
.seo-ico { font-size: 1.4rem; flex: 0 0 auto; }
.seo-points div { color: var(--muted); }
.seo-points strong { display: block; margin-bottom: .15rem; }

.seo-visual { display: flex; flex-direction: column; gap: 1rem; }
.seo-search { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem; box-shadow: var(--shadow); }
.seo-bar { display: flex; align-items: center; gap: .55rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1rem; color: #9aa0bd; font-size: .92rem; margin-bottom: 1rem; }
.seo-res { display: flex; gap: .7rem; align-items: center; padding: .7rem; border-radius: 12px; margin-bottom: .5rem; }
.seo-res:last-child { margin-bottom: 0; }
.seo-res:not(.seo-res-top) { opacity: .65; }
.seo-res-top { position: relative; background: linear-gradient(120deg, rgba(109,94,252,.09), rgba(166,75,255,.09)); box-shadow: inset 0 0 0 1.5px var(--primary); }
.seo-pos { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-family: 'Space Grotesk'; font-size: .85rem; background: var(--bg-tint); color: var(--muted); }
.seo-res-top .seo-pos { background: var(--grad); color: #fff; }
.seo-res-title { color: var(--primary); font-weight: 600; }
.seo-res-url { color: var(--accent-d); font-size: .82rem; }
.seo-res-desc { color: var(--muted); font-size: .84rem; }
.seo-flag { position: absolute; top: -12px; right: 10px; background: var(--ink); color: #fff; font-size: .72rem; font-weight: 600; padding: .22rem .6rem; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap; }
.seo-skel { height: 9px; border-radius: 5px; background: #e2e4f0; width: 75%; margin-bottom: .4rem; }
.seo-skel.short { width: 45%; margin-bottom: 0; }
.seo-stat { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem; color: var(--muted); box-shadow: var(--shadow-sm); }
.seo-stat strong { color: var(--ink); font-family: 'Space Grotesk'; }

/* ---------- Über mich ---------- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-photo { position: relative; }
.photo-ph {
  aspect-ratio: 1/1; max-width: 340px; border-radius: var(--radius-lg);
  background: var(--grad); display: grid; place-items: center;
  font-family: 'Space Grotesk'; font-weight: 700; font-size: 7rem; color: rgba(255,255,255,.9);
  box-shadow: var(--shadow); margin-inline: auto;
}
.about-badge {
  position: absolute; bottom: 1rem; right: 12%; background: #fff; box-shadow: var(--shadow);
  padding: .5rem .9rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
}
.about-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--ink); margin-bottom: 1rem; line-height: 1.1; }
.about-copy p { color: var(--muted); margin-bottom: 1rem; max-width: 34rem; }
.about-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.6rem; }
.about-list li { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem; }
.about-list strong { display: block; color: var(--ink); font-size: 1.05rem; }
.about-list span { color: var(--muted); font-size: .86rem; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 1rem; line-height: 1.1; }
.contact-list { margin-top: 1.8rem; display: grid; gap: .9rem; }
.contact-list li { display: flex; align-items: center; gap: .8rem; color: #cfd2e6; }
.contact-list a:hover { color: #fff; text-decoration: underline; }
.ci { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }

.contact-form { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: .9rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--text); background: var(--bg-soft);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .8rem .9rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(109,94,252,.15); background: #fff;
}
.field textarea { resize: vertical; }
.form-note { margin-top: .9rem; text-align: center; font-weight: 600; color: var(--accent-d); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); color: #9aa0c2; padding: 3rem 0 1.6rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 1.8rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.logo-light { color: #fff; }
.logo-light span { color: #b9b1ff; }
.footer-tag { margin-top: .4rem; font-size: .92rem; }
.footer-contact { margin-top: .7rem; font-size: .9rem; line-height: 1.9; }
.footer-contact a:hover { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.4rem; font-size: .85rem; }

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal-nav { border-bottom: 1px solid var(--line); }
.legal-main { width: min(50rem, 90%); margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) 0 4rem; }
.legal-back { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); font-weight: 500; margin-bottom: 1.4rem; }
.legal-back:hover { color: var(--primary); }
.legal-main h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ink); margin-bottom: .4rem; line-height: 1.1; }
.legal-updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.legal-main h2 { font-size: 1.3rem; color: var(--ink); margin: 2.2rem 0 .6rem; }
.legal-main h3 { font-size: 1.05rem; color: var(--ink); margin: 1.4rem 0 .4rem; }
.legal-main p, .legal-main li { color: var(--text); margin-bottom: .7rem; }
.legal-main ul { padding-left: 1.3rem; list-style: disc; margin-bottom: .7rem; }
.legal-main a { color: var(--primary); }
.legal-main a:hover { text-decoration: underline; }
.ph { background: #fff3c4; color: #6b5800; padding: 0 .3rem; border-radius: 4px; font-weight: 600; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid, .seo-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
}
@media (max-width: 960px) {
  .burger { display: flex; }
  .menu {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius);
    padding: .5rem 6% 1rem; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-14px);
    transition: opacity .3s ease, transform .45s cubic-bezier(.16,1,.3,1), visibility .45s;
  }
  .menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .menu a {
    width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line);
    opacity: 0; transform: translateY(-8px);
    transition: opacity .35s ease, transform .35s cubic-bezier(.16,1,.3,1), color .2s;
  }
  .menu.open a { opacity: 1; transform: none; }
  .menu.open a:nth-child(1) { transition-delay: .06s; }
  .menu.open a:nth-child(2) { transition-delay: .11s; }
  .menu.open a:nth-child(3) { transition-delay: .16s; }
  .menu.open a:nth-child(4) { transition-delay: .21s; }
  .menu.open a:nth-child(5) { transition-delay: .26s; }
  .menu.open a:nth-child(6) { transition-delay: .31s; }
  .menu a.btn { margin: .8rem 0 .2rem; justify-content: center; border-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; margin-top: 1rem; }
  .lead { max-width: none; }
}
@media (max-width: 520px) {
  .cards, .steps, .work-grid, .about-list { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
