:root {
  --navy: #0a1a5e;
  --navy-deep: #060f3d;
  --blue: #acd0fe;
  --blue-soft: #e3f0ff;
  --black: #000000;
  --white: #ffffff;
  --ink: #0c0f1a;
  --muted: #475569;
  --border: #e2e8f0;
  --radius: 18px;
  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow.light { background: rgba(172, 208, 254, 0.15); color: var(--blue); }

.section-intro {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 50px;
}
.section-intro.light { color: rgba(255,255,255,0.75); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--navy-deep);
  box-shadow: 0 8px 24px -8px rgba(172, 208, 254, 0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(172, 208, 254, 0.75);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.kontakt .btn-ghost, .kontakt .btn-primary { color: var(--navy-deep); }

/* ---------- CURSOR GLOW ---------- */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172,208,254,0.18) 0%, rgba(172,208,254,0) 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 24px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: 100px;
  padding: 14px 12px 14px 20px;
  box-shadow: 0 8px 30px -12px rgba(10,26,94,0.12);
  transition: box-shadow 0.3s ease, padding 0.3s var(--ease);
}
.nav.scrolled .nav-inner {
  box-shadow: 0 8px 30px -10px rgba(10,26,94,0.2);
  padding: 8px 12px 8px 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.2rem;
  transition: font-size 0.3s var(--ease);
}
.nav-logo img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}
.nav.scrolled .nav-logo { font-size: 1.05rem; }
.nav.scrolled .nav-logo img { width: 42px; height: 42px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a { color: var(--ink); position: relative; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--navy);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { font-size: 0.88rem; padding: 10px 20px; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  border-radius: 20px;
  margin-top: 10px;
  padding: 16px;
  box-shadow: 0 12px 32px -8px rgba(10,26,94,0.18);
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
}
.nav-mobile a {
  padding: 12px 14px;
  font-weight: 500;
  border-radius: 10px;
}
.nav-mobile a:hover { background: var(--blue-soft); }
.nav-mobile.open { display: flex; }
.nav-mobile .btn { justify-content: center; margin-top: 6px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #14276e 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(172,208,254,0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(172,208,254,0.18) 0%, transparent 50%);
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(2%, -2%) scale(1.05); }
}
.hero-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: start;
  text-align: left;
}
.hero-inner { max-width: 660px; }

.hero-portrait {
  position: relative;
  align-self: stretch;      /* wächst auf die Höhe der Textspalte */
  justify-self: center;
  max-width: 330px;
  width: 100%;
  margin-top: 50px;         /* Höhe der Eyebrow-Badge: Oberkante auf Headline-Höhe */
  min-height: 340px;        /* Sicherheitsnetz, falls der Text mal sehr kurz ist */
}
.hero-portrait img {
  position: absolute;       /* bestimmt die Zeilenhöhe NICHT mit */
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 34px 70px -24px rgba(0,0,0,0.55), 0 0 0 1px rgba(172,208,254,0.22);
}
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172,208,254,0.22), transparent 65%);
  z-index: -1;
}
.hero-portrait-badge {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--navy-deep);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 100px;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
}
.hero .eyebrow { background: rgba(172,208,254,0.15); color: var(--blue); }
.hero h1 { color: var(--white); }
.hero h1 .hl {
  color: var(--blue);
  background: linear-gradient(180deg, transparent 62%, rgba(172,208,254,0.22) 62%);
  padding: 0 2px;
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 24px 0 0;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.3); }
.hero .btn-ghost:hover { border-color: var(--white); }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 70px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-stat .num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--blue);
}
.hero-stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* ---------- PROBLEM ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.problem-card {
  background: var(--blue-soft);
  border: 1px solid rgba(10,26,94,0.06);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(10,26,94,0.2); }
.problem-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blue-soft);
}
.problem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.problem-card:hover .problem-img img { transform: scale(1.04); }
.problem-body { padding: 24px 28px 28px; }
.problem-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px -6px rgba(10,26,94,0.18);
}
.problem-icon svg { width: 24px; height: 24px; }
.problem-card p { color: var(--ink); font-size: 1rem; }
.problem-card p strong { font-weight: 700; color: var(--navy); }

.problem-closing {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- ANGEBOT ---------- */
.angebot { background: linear-gradient(180deg, #fafcff 0%, var(--white) 100%); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s var(--ease);
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 20px 36px -18px rgba(10,26,94,0.18);
}
.offer-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--blue);
  background: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.offer-card p { color: var(--muted); font-size: 0.95rem; }

.pricing-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(172,208,254,0.25), transparent 70%);
}
.pricing-main { position: relative; z-index: 1; }
.pricing-label {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.pricing-tiers { display: flex; gap: 10px; flex-wrap: wrap; }
.ptier {
  position: relative;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 104px;
}
.ptier.featured { background: rgba(172,208,254,0.16); border-color: var(--blue); }
.ptier-badge {
  position: absolute;
  top: -10px;
  background: var(--blue);
  color: var(--navy-deep);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.ptier-price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--blue); }
.ptier-term { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 2px; }
.price-sub { color: rgba(255,255,255,0.65); margin-top: 14px; font-size: 0.92rem; }
.pricing-extra { color: rgba(255,255,255,0.85); position: relative; z-index: 1; }
.pricing-extra p { margin-bottom: 4px; font-size: 0.95rem; }
.price-addon { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--blue); font-size: 1.1rem; }
.pricing-card .btn { position: relative; z-index: 1; }

/* ---------- ERGEBNISSE ---------- */
.ergebnisse {
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 60%, #102261 100%);
}
.ergebnisse h2, .ergebnisse .section-intro strong { color: var(--white); }
.kunde-badge {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 56px;
}
.kunde-logo {
  width: 108px;
  height: 108px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 24px 48px -14px rgba(0,0,0,0.4), 0 0 0 5px rgba(172,208,254,0.3);
  transition: transform 0.2s linear;
  will-change: transform;
}
.kunde-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.kunde-badge .section-intro { margin-bottom: 0; }
.campaign { margin-bottom: 40px; }
.campaign-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.campaign-head h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0; }
.campaign-meta {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(172,208,254,0.14);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Testimonial */
.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 34px 36px;
  margin-bottom: 44px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 6px; left: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(172,208,254,0.28);
  line-height: 1;
}
.testimonial-quote {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 34px;
}
.testimonial-author {
  display: block;
  margin-top: 16px;
  padding-left: 34px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}
.campaign .stats-grid { margin-bottom: 0; grid-template-columns: repeat(3, 1fr); }
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.stat-card { min-width: 0; }
.stat-card .num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 4.4vw, 2.1rem);
  color: var(--blue);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.stat-card .label { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

.ergebnisse-closing {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
}

/* ---------- UEBER MICH ---------- */
.ueber-mich-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.ueber-mich-img { position: relative; }
.ueber-mich-img img {
  border-radius: 24px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  width: 100%;
  box-shadow: 0 30px 60px -24px rgba(10,26,94,0.35);
}
.img-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--blue);
  color: var(--navy-deep);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 30px -12px rgba(10,26,94,0.3);
  line-height: 1.3;
}
.ueber-mich-text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 18px; }
.ueber-mich-text h2 { margin-bottom: 22px; }

/* ---------- KONTAKT ---------- */
.kontakt {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  text-align: center;
}
.kontakt-inner { display: flex; flex-direction: column; align-items: center; }
.kontakt h2 { color: var(--white); }
/* Social-Links */
.kontakt-social { display: flex; gap: 14px; justify-content: center; margin-top: 26px; }
.kontakt-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease);
}
.kontakt-social a:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.kontakt-social svg { width: 18px; height: 18px; }

.kontakt-mail { margin-top: 24px; color: rgba(255,255,255,0.65); }
.kontakt-mail a { color: var(--blue); font-weight: 600; }
.kontakt-mail a:hover { text-decoration: underline; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-deep); padding: 50px 24px; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.5);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 7px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--blue); }
.footer-copy { margin-top: 14px; font-size: 0.82rem; }

/* ---------- LEGAL PAGES ---------- */
.legal-hero {
  padding: 160px 0 50px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #14276e 100%);
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.legal-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.legal-hero .back-link:hover { text-decoration: underline; }

.legal-content {
  padding: 70px 0 100px;
}
.legal-content .container {
  max-width: 760px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1rem;
}
.legal-content ul {
  color: var(--muted);
  margin: 0 0 14px 0;
  padding-left: 22px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--navy); text-decoration: underline; }
.legal-content a:hover { color: var(--blue); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .cursor-glow { display: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    justify-items: center;
  }
  .hero-inner { order: 2; }
  .hero-portrait {
    order: 1;
    max-width: 250px;
    margin-top: 0;
    align-self: auto;
    min-height: 0;
  }
  .hero-portrait img { position: static; height: auto; aspect-ratio: 3 / 4; }
  .hero-portrait-badge { font-size: 0.78rem; padding: 7px 15px; }
  .hero-sub { margin: 24px auto 0; }
  .hero-cta { justify-content: center; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ueber-mich-grid { grid-template-columns: 1fr; gap: 40px; }
  .ueber-mich-img img { max-width: 360px; margin: 0 auto; }
  .img-badge { left: 50%; transform: translateX(-50%); bottom: -14px; }
  .kunde-logo { width: 84px; height: 84px; border-radius: 20px; }
  .kunde-badge { flex-direction: column; text-align: center; gap: 18px; }
  .campaign .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 80px 0; }
  .hero { padding-top: 130px; min-height: 0; }
  .hero h1 { font-size: 1.95rem; }
  .hero-sub { font-size: 1rem; }
  h2 { font-size: 1.75rem; }
  .hero-stats { gap: 24px; margin-top: 48px; }
  .hero-stat-divider { display: none; }
  .hero-stat .num { font-size: 1.8rem; }
  .problem-grid, .offer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .campaign .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .campaign { margin-bottom: 32px; }
  .problem-closing, .ergebnisse-closing { font-size: 1.15rem; }
  .pricing-card { flex-direction: column; align-items: flex-start; }
  .pricing-card .btn { width: 100%; justify-content: center; }
  .pricing-tiers { width: 100%; }
  .ptier { flex: 1; min-width: 88px; padding: 14px 10px; }
  .ptier-price { font-size: 1.35rem; }
  .ptier-term { font-size: 0.72rem; text-align: center; }
  .kontakt-social { flex-wrap: wrap; }
  .testimonial { padding: 28px 24px; }
  .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-portrait { max-width: 200px; }
  .campaign .stats-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 20px 16px; }
  .stat-card .num { font-size: 1.75rem; }
  .ptier { min-width: 0; padding: 12px 6px; }
  .ptier-price { font-size: 1.15rem; }
  .ptier-term { font-size: 0.66rem; }
  .pricing-card { padding: 28px 20px; }
  .ueber-mich-img img { max-width: 100%; }
  .img-badge { font-size: 0.85rem; padding: 12px 16px; }
  .container { padding: 0 18px; }
}

@media (max-width: 420px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
