/* ================================================
   SUITABLE SOLUTIONS IT
   Marco Keppens – Agile Coach & Scrum Master
   ================================================ */

/* ================================================
   LOKALE FONTS – kein Google, kein Cookie-Banner
   Dateien liegen in /fonts/
   Download: https://gwfh.mranftl.com/fonts
   ================================================ */

/* Inter – Regular */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Inter Light'), local('Inter-Light'),
       url('../fonts/inter-v13-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Inter Regular'), local('Inter-Regular'),
       url('../fonts/inter-v13-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Inter Medium'), local('Inter-Medium'),
       url('../fonts/inter-v13-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Inter SemiBold'), local('Inter-SemiBold'),
       url('../fonts/inter-v13-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Inter Bold'), local('Inter-Bold'),
       url('../fonts/inter-v13-latin-700.woff2') format('woff2');
}

/* Fraunces – Serif Display Font */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Fraunces Light'), local('Fraunces-Light'),
       url('../fonts/fraunces-v24-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Fraunces SemiBold'), local('Fraunces-SemiBold'),
       url('../fonts/fraunces-v24-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Fraunces Light Italic'), local('Fraunces-LightItalic'),
       url('../fonts/fraunces-v24-latin-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Fraunces SemiBold Italic'), local('Fraunces-SemiBoldItalic'),
       url('../fonts/fraunces-v24-latin-600italic.woff2') format('woff2');
}

/* ------------------------------------------------
   RESET & BASE
   ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #f8f7f4;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ------------------------------------------------
   LAYOUT SYSTEM
   max-width 1180px, zentriert, padding seitlich
   ------------------------------------------------ */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ------------------------------------------------
   FARBEN & TOKENS
   ------------------------------------------------ */
:root {
  --blue:      #0057FF;
  --blue-dark: #003DB5;
  --blue-mid:  #1a6aff;
  --cyan:      #00C8FF;
  --dark:      #0d1117;
  --dark-2:    #161c27;
  --text-dim:  rgba(255,255,255,0.55);
  --text-muted:rgba(255,255,255,0.35);
  --border:    rgba(255,255,255,0.08);
  --sand:      #f8f7f4;
  --ink:       #1a1a1a;
}

/* ------------------------------------------------
   TYPOGRAPHY HELPERS
   ------------------------------------------------ */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
}
.serif {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 34px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s;
}
.nav__links a:hover { color: #fff; }
.nav__cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}
.nav__cta:hover { background: var(--blue-dark); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: all .25s;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  background: var(--dark);
  padding-top: 64px; /* nav height */
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtile Hintergrund-Elemente */
.hero__bg-glow {
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero__bg-glow-2 {
  position: absolute;
  bottom: -150px; right: 100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__left { z-index: 1; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,200,255,.25);
  background: rgba(0,200,255,.06);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}
.hero__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: .2; }
}

.hero__h1 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1.4rem;
}
.hero__h1 em {
  font-style: italic;
  color: var(--cyan);
}

.hero__sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2.2rem;
}
.hero__sub strong {
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,.7);
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  transition: color .2s, border-color .2s;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.35); }

/* Hero Foto */
.hero__right { position: relative; }
.hero__photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Blauer Glow-Ring */
.hero__photo-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan), transparent 60%);
  z-index: -1;
}
/* Badge auf dem Foto */
.hero__badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,17,23,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  white-space: nowrap;
  text-align: center;
}
.hero__badge-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.hero__badge-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ================================================
   STATS BAND
   ================================================ */
.stats {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: -1px;
  line-height: 1;
}
.stats__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 400;
}

/* ================================================
   PROBLEM SEKTION – weißer Hintergrund
   ================================================ */
.problems {
  background: var(--sand);
  padding: 6rem 0;
}
.problems__inner { }
.problems__head {
  margin-bottom: 3rem;
}
.problems__head .label { margin-bottom: 10px; }
.problems__h2 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.5px;
  max-width: 600px;
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: #e0ddd8;
  border: 1.5px solid #e0ddd8;
  border-radius: 16px;
  overflow: hidden;
}
.prob {
  background: var(--sand);
  padding: 2.2rem 2rem;
}
.prob__num {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 300;
  color: #d0cdc8;
  line-height: 1;
  margin-bottom: 1rem;
}
.prob__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.prob__desc {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  font-weight: 300;
}

/* ================================================
   LÖSUNG – dunkel
   ================================================ */
.solution {
  background: var(--dark);
  padding: 5rem 0;
}
.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.solution__left .label {
  color: var(--cyan);
  margin-bottom: 12px;
}
.solution__h2 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.4rem;
}
.solution__h2 em {
  font-style: italic;
  color: var(--cyan);
}
.solution__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 2rem;
}
.solution__text strong { color: #fff; font-weight: 600; }

.solution__photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.solution__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================
   LEISTUNGEN – heller Hintergrund
   ================================================ */
.leistungen {
  background: #fff;
  padding: 6rem 0;
}
.leistungen__head {
  margin-bottom: 3rem;
}
.leistungen__head .label { margin-bottom: 10px; }
.leistungen__h2 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e8e6e2;
  border: 1px solid #e8e6e2;
  border-radius: 16px;
  overflow: hidden;
}
.lcard {
  background: #fff;
  padding: 2.4rem 2.2rem;
  transition: background .2s;
}
.lcard:hover { background: #f8f7f4; }
.lcard__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
.lcard__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.lcard__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}
.tag-i { background: #dbeafe; color: #1d4ed8; }
.tag-r { background: #fee2e2; color: #dc2626; }
.tag-t { background: #ede9fe; color: #6d28d9; }
.tag-d { background: #d1fae5; color: #065f46; }

.lcard__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.lcard__result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 1.2rem;
  border-top: 1px solid #eee;
}
.lcard__result-icon { font-size: 16px; }
.lcard__result-text {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  font-style: italic;
}

/* ================================================
   GALERIE – Workshop Fotos
   ================================================ */
.galerie {
  background: var(--dark);
  padding: 5rem 0;
}
.galerie__head { margin-bottom: 2.5rem; }
.galerie__head .label { color: var(--cyan); margin-bottom: 10px; }
.galerie__h2 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
}
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.galerie__item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.galerie__item:hover img { transform: scale(1.04); }

/* Großes Bild links */
.galerie__item--big {
  grid-row: span 2;
}

/* ================================================
   ÜBER MICH
   ================================================ */
.about {
  background: var(--sand);
  padding: 6rem 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}
.about__photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: sticky;
  top: 84px;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__content .label { margin-bottom: 12px; }
.about__h2 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}
.about__text {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  font-weight: 300;
  margin-bottom: 1rem;
}
.about__text strong { color: var(--ink); font-weight: 600; }

.about__skills {
  margin-top: 2rem;
  border-top: 1px solid #e0ddd8;
  padding-top: 2rem;
}
.about__skills-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1rem;
}
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  background: #eee;
  color: #333;
  border: 1px solid #e0ddd8;
}

/* ================================================
   VIDEO SEKTION
   ================================================ */
.video-section {
  background: var(--dark-2);
  padding: 5rem 0;
}
.video-section__head { margin-bottom: 2.5rem; }
.video-section__head .label { color: var(--cyan); margin-bottom: 10px; }
.video-section__h2 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
}
.video-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  max-width: 820px;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================
   KONTAKT / CTA
   ================================================ */
.cta {
  background: var(--blue);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.cta__h2 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.cta__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.cta__contact-item a {
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.cta__contact-item a:hover { color: #fff; }
.cta__contact-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}
footer .wrap {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
footer img {
  height: 28px;
  opacity: .65;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: rgba(255,255,255,.55); }

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE – TABLET (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 340px;
    gap: 3rem;
  }
  .about__inner {
    grid-template-columns: 300px 1fr;
    gap: 3rem;
  }
  .solution__inner {
    gap: 3rem;
  }
}

/* ================================================
   RESPONSIVE – MOBILE (≤768px)
   ================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav__links li { border-bottom: 1px solid var(--border); }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a {
    display: block;
    padding: 1rem 0;
    font-size: 16px;
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 3rem;
    gap: 2.5rem;
  }
  .hero__h1 { font-size: 36px; }
  .hero__sub { font-size: 15px; }
  .hero__right { max-width: 360px; margin: 0 auto; width: 100%; }
  .hero__photo-wrap { aspect-ratio: 3/4; max-height: 420px; }

  /* Stats */
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4) { border-top: 1px solid var(--border); }
  .stats__item:nth-child(4) { border-right: none; }

  /* Problems */
  .problems { padding: 4rem 0; }
  .problems__grid { grid-template-columns: 1fr; }

  /* Solution */
  .solution { padding: 4rem 0; }
  .solution__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .solution__photo { aspect-ratio: 16/9; }

  /* Leistungen */
  .leistungen { padding: 4rem 0; }
  .leistungen__grid { grid-template-columns: 1fr; }

  /* Galerie */
  .galerie { padding: 4rem 0; }
  .galerie__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .galerie__item--big {
    grid-row: span 1;
    grid-column: span 2;
  }

  /* Über mich */
  .about { padding: 4rem 0; }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__photo {
    aspect-ratio: 4/3;
    position: static;
    max-height: 360px;
  }
  .about__photo img { object-position: center 20%; }

  /* Video */
  .video-section { padding: 4rem 0; }

  /* CTA */
  .cta { padding: 4rem 0; }
  .cta__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  footer .wrap { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { justify-content: center; }

  /* Allgemein */
  .wrap { padding: 0 1.5rem; }
}

/* ================================================
   RESPONSIVE – SMALL MOBILE (≤480px)
   ================================================ */
@media (max-width: 480px) {
  .hero__h1 { font-size: 30px; }
  .hero__actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  .stats__num { font-size: 28px; }
}
