:root {
  --dark: #16181d;
  --dark-2: #1c1f26;
  --orange: #f97316;
  --orange-2: #ea580c;
  --white: #ffffff;
  --off: #f8fafc;
  --muted: #e2e8f0;
  --text: #0f172a;
  --soft: #64748b;
  --line: #cbd5e1;
  --whatsapp: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--off);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  padding: 16px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 250, 252, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(203, 213, 225, .7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 20px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: var(--orange);
  font-weight: 900;
}

.nav nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
  color: #334155;
}

.nav-cta {
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(249, 115, 22, .25);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 92px 5vw;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, .15), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f8fafc 45%, #e2e8f0 100%);
  overflow: hidden;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(100, 116, 139, .25);
  border-radius: 999px;
  color: #475569;
  background: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 13px;
}

.eyebrow.orange {
  color: #fed7aa;
  background: rgba(249, 115, 22, .12);
  border-color: rgba(249, 115, 22, .25);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
  margin-bottom: 22px;
  color: var(--dark);
}

.hero h2 {
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 22px;
  color: #334155;
}

.hero-text,
.section-lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: #475569;
  max-width: 780px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions.center {
  justify-content: center;
}

.btn {
  min-height: 54px;
  padding: 17px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 16px 40px rgba(249, 115, 22, .28);
}

.btn.secondary {
  background: white;
  color: var(--dark);
  border: 1px solid var(--line);
}

.btn.whatsapp {
  background: var(--whatsapp);
  color: #062b15;
}

.trust-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(203, 213, 225, .75);
  font-size: 14px;
  font-weight: 800;
  color: #334155;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone {
  width: min(340px, 78vw);
  padding: 14px;
  border-radius: 42px;
  background: #0b1018;
  box-shadow: 0 40px 90px rgba(15, 23, 42, .35);
  transform: rotate(2deg);
}

.phone-top {
  width: 92px;
  height: 8px;
  background: #293241;
  border-radius: 99px;
  margin: 4px auto 14px;
}

.phone-screen {
  min-height: 520px;
  border-radius: 30px;
  padding: 28px;
  color: white;
  background:
    linear-gradient(rgba(22,24,29,.25), rgba(22,24,29,.82)),
    linear-gradient(135deg, #334155, #111827);
  border: 1px solid rgba(255,255,255,.12);
}

.mini-label {
  font-size: 13px;
  color: #fed7aa;
  font-weight: 900;
  margin-bottom: 18px;
}

.phone-screen h3 {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 14px;
}

.phone-screen p {
  color: #cbd5e1;
  line-height: 1.45;
}

.phone-screen button {
  width: 100%;
  border: 0;
  margin: 18px 0;
  padding: 15px;
  border-radius: 16px;
  background: var(--orange);
  color: white;
  font-weight: 900;
}

.mock-card {
  height: 130px;
  margin-top: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(249,115,22,.75), rgba(255,255,255,.14));
}

.mock-card.small {
  height: 86px;
  background: rgba(255,255,255,.12);
}

.floating-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 22px;
  background: white;
  color: var(--dark);
  font-weight: 900;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .2);
}

.floating-card.top {
  top: 80px;
  right: 6%;
}

.floating-card.bottom {
  bottom: 90px;
  left: 4%;
}

.section,
.dark-section {
  padding: 116px 5vw;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section h2,
.dark-section h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin-bottom: 24px;
}

.dark-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(249,115,22,.15), transparent 25%),
    var(--dark);
  color: white;
}

.dark-section .section-lead {
  color: #cbd5e1;
}

.problem-grid,
.feature-grid,
.pricing,
.steps {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.problem-grid,
.feature-grid,
.pricing {
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid article {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.problem-grid p {
  color: #cbd5e1;
  line-height: 1.6;
}

.feature-grid article,
.steps article {
  padding: 34px;
  border-radius: 30px;
  background: white;
  border: 1px solid rgba(203,213,225,.8);
  box-shadow: 0 20px 50px rgba(15,23,42,.06);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #ffedd5;
  color: var(--orange-2);
  font-weight: 900;
}

.feature-grid h3,
.problem-grid h3,
.steps h3,
.pricing h3 {
  font-size: 24px;
  letter-spacing: -.035em;
  margin-bottom: 12px;
}

.feature-grid p,
.steps p,
.founder p,
.faq p {
  color: #475569;
  line-height: 1.65;
}

.muted {
  background: #eef2f7;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.subclaim {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.045em;
  color: var(--orange-2);
}

.recruit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.recruit-grid span {
  min-height: 120px;
  padding: 22px;
  border-radius: 26px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(rgba(22,24,29,.1), rgba(22,24,29,.65)),
    linear-gradient(135deg, #475569, #111827);
  color: white;
  font-weight: 900;
  font-size: 22px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.steps b {
  display: block;
  color: var(--orange);
  font-size: 34px;
  margin-bottom: 18px;
}

.truth-box {
  margin-top: 28px;
  padding: 34px;
  border-radius: 30px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.truth-box h3 {
  font-size: 30px;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.truth-box p {
  color: #7c2d12;
  line-height: 1.6;
  margin-bottom: 0;
}

.pricing-wrap {
  background: var(--dark-2);
}

.pricing article {
  position: relative;
  padding: 36px;
  border-radius: 32px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.pricing article.highlight {
  background: white;
  color: var(--dark);
  transform: translateY(-18px);
  box-shadow: 0 30px 80px rgba(249,115,22,.22);
}

.pricing p {
  color: #cbd5e1;
  line-height: 1.55;
}

.pricing article.highlight p,
.pricing article.highlight li {
  color: #475569;
}

.pricing strong,
.pricing span {
  display: block;
}

.pricing strong {
  font-size: 25px;
  margin-top: 20px;
}

.pricing span {
  margin-top: 6px;
  color: var(--orange);
  font-weight: 900;
}

.pricing ul {
  padding-left: 18px;
  margin-top: 28px;
  line-height: 1.9;
}

.badge {
  position: absolute;
  top: -16px;
  right: 28px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-weight: 900;
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

details {
  padding: 24px 28px;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(203,213,225,.8);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 20px;
}

.final-cta {
  padding: 120px 5vw;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 50% 0%, rgba(249,115,22,.22), transparent 32%),
    var(--dark);
}

.final-cta p {
  font-size: clamp(19px, 2vw, 25px);
  color: #cbd5e1;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  padding: 15px 18px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #052e16;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(37,211,102,.32);
}

footer {
  padding: 32px 5vw;
  text-align: center;
  background: #0b1018;
  color: #94a3b8;
}

@media (max-width: 960px) {
  .nav nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .problem-grid,
  .feature-grid,
  .pricing,
  .steps,
  .split {
    grid-template-columns: 1fr;
  }

  .pricing article.highlight {
    transform: none;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 66px;
  }

  .brand {
    font-size: 18px;
  }

  .hero,
  .section,
  .dark-section,
  .final-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions,
  .hero-actions.center {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-card {
    display: none;
  }

  .phone-screen {
    min-height: 430px;
  }

  .section,
  .dark-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .recruit-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}

/* === PATCH: Mobile UX, WhatsApp Icon, TM Branding, Legal Footer === */

.brand span:last-child {
  white-space: nowrap;
}

.wa-icon {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  flex: 0 0 auto;
}

.btn.whatsapp,
.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

footer {
  padding: 46px 5vw 34px;
  text-align: left;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.footer-inner strong {
  display: block;
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-inner p {
  margin: 0 0 8px;
  max-width: 620px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 800;
}

.footer-links a {
  color: white;
}

.footer-copy {
  max-width: 1240px;
  margin: 28px auto 0;
  color: #94a3b8;
}

/* Mobile: sauberere Ausrichtung und weniger abgeschnittene Hero-Wirkung */
@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding-top: 34px;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
    letter-spacing: -.055em;
    line-height: 1.02;
  }

  .hero h2 {
    font-size: 27px;
    line-height: 1.08;
  }

  .hero-text,
  .section-lead {
    font-size: 18px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-row span {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 10px;
  }

  .phone {
    width: min(310px, 88vw);
    transform: rotate(0deg);
  }

  .final-cta {
    text-align: left;
  }

  .final-cta .hero-actions.center {
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  footer {
    padding-bottom: 92px;
  }
}

.legal-page h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 36px;
  letter-spacing: -.03em;
}

.legal-page p {
  max-width: 850px;
  line-height: 1.75;
  color: #334155;
}

.wa-icon{
  width:20px;
  height:20px;
  display:inline-block;
  vertical-align:middle;
  flex:0 0 auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.18));
}

.btn.whatsapp{
  background:#25D366;
  color:#08130d;
  font-weight:800;
  letter-spacing:-0.02em;
}

.btn.whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:
    0 12px 32px rgba(37,211,102,.28);
}

.whatsapp-float{
  backdrop-filter: blur(16px);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:
    0 18px 40px rgba(0,0,0,.28);
}

.hero-kicker{
  display:inline-flex;
  margin:18px 0 8px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(249,115,22,.12);
  border:1px solid rgba(249,115,22,.24);
  color:#f97316;
  font-weight:700;
  letter-spacing:.01em;
}

/* === Premium FAQ Upgrade MeisterVorOrt™ === */

.faq-section {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 26, 0.10), transparent 34rem),
    linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
}

.faq-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.faq-head h2 {
  max-width: 820px;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.faq details:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 26, 0.28);
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.10);
}

.faq details[open] {
  border-color: rgba(255, 107, 26, 0.34);
  background: #ffffff;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
  color: #0f172a;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fff3eb;
  color: #ff6b1a;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
  background: #ff6b1a;
  color: #ffffff;
}

.faq p {
  max-width: 980px;
  margin: -8px 28px 26px;
  color: #334155;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.72;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 26px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.faq-cta strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: -0.02em;
}

.faq-cta p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.faq-cta .btn {
  white-space: nowrap;
}

/* Responsiveness: FAQ muss am Handy besser wirken als am Desktop */
@media (max-width: 760px) {
  .faq-head {
    margin-bottom: 22px;
  }

  .faq {
    gap: 12px;
  }

  .faq details {
    border-radius: 19px;
  }

  .faq summary {
    align-items: flex-start;
    padding: 20px 18px;
    gap: 12px;
    font-size: 1rem;
  }

  .faq summary::after {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }

  .faq p {
    margin: -6px 18px 21px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .faq-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 22px;
  }

  .faq-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .faq summary {
    padding: 18px 16px;
  }

  .faq p {
    margin-left: 16px;
    margin-right: 16px;
  }
}

/* === Local SEO Partner Section MeisterVorOrt™ === */

.visibility-partner {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 107, 26, 0.10), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.visibility-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.visibility-head h2 {
  max-width: 760px;
}

.visibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.visibility-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.visibility-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #fff3eb;
  color: #ff6b1a;
  font-weight: 900;
}

.visibility-grid article h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.visibility-grid article p {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.62;
}

.visibility-grid .partner-card {
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(31, 41, 55, 0.98));
  border-color: rgba(255, 107, 26, 0.25);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.visibility-grid .partner-card h3,
.visibility-grid .partner-card p {
  color: #ffffff;
}

.visibility-grid .partner-card p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: 26px;
  border-radius: 28px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.partner-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  letter-spacing: -0.025em;
}

.partner-note p {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.66;
}

.partner-note .btn {
  white-space: nowrap;
}

/* Responsiveness: regionaler Sichtbarkeitsblock */
@media (max-width: 980px) {
  .visibility-grid {
    grid-template-columns: 1fr;
  }

  .visibility-grid article {
    min-height: unset;
  }

  .partner-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .visibility-head {
    margin-bottom: 22px;
  }

  .visibility-grid {
    gap: 12px;
  }

  .visibility-grid article {
    padding: 22px;
    border-radius: 22px;
  }

  .visibility-grid article span {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
  }

  .partner-note {
    padding: 22px;
    border-radius: 22px;
  }

  .partner-note .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

/* === PATCH: TM, Navbar CTA, Trust Badges, Beispielseiten === */

/* Navbar ruhiger und sauberer ausrichten */
.nav {
  gap: 26px;
}

.brand {
  min-width: 190px;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  height: 38px;
  width: auto;
}

.nav nav {
  flex: 1;
  justify-content: center;
  align-items: center;
}

.nav-cta {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 10px 17px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  margin-left: 0;
}

/* Trust-Zeile: eindeutig Info-Badges, keine Buttons */
.trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 0;
  padding: 6px 9px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #64748b;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 750;
}

.trust-row span::before {
  content: "✓";
  display: inline-flex;
  margin-right: 6px;
  color: #ff6b1a;
  font-weight: 900;
}

/* Beispielseiten/Gewerke */
.examples-section {
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 107, 26, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.examples-grid article {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(15,23,42,.075);
}

.examples-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff3eb;
  color: #ff6b1a;
  font-size: 12px;
  font-weight: 900;
}

.examples-grid h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.examples-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.62;
}

.examples-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: #ff6b1a;
  font-weight: 900;
}

.examples-grid a::after {
  content: " →";
}

.examples-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 26px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(15,23,42,.18);
}

.examples-note strong {
  display: block;
  font-size: clamp(1.08rem,2vw,1.35rem);
  letter-spacing: -.025em;
}

.examples-note p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
}

.examples-note .btn {
  white-space: nowrap;
}

/* Mobile Navbar: kein gequetschter Button */
@media (max-width: 960px) {
  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-logo {
    height: 34px;
  }
}

@media (max-width: 980px) {
  .examples-grid {
    grid-template-columns: 1fr;
  }

  .examples-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .trust-row span {
    padding: 4px 0;
    font-size: 12px;
  }

  .examples-grid {
    gap: 12px;
  }

  .examples-grid article {
    padding: 22px;
    border-radius: 22px;
  }

  .examples-note {
    padding: 22px;
    border-radius: 22px;
  }

  .examples-note .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* === Premium Pricing Details MeisterVorOrt™ === */

.pricing-lead {
  max-width: 880px;
  margin: 18px 0 38px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}

.package-more {
  margin-top: 22px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  box-shadow: none;
  overflow: hidden;
}

.package-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 17px;
  cursor: pointer;
  list-style: none;
  color: #ffffff;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: -.01em;
}

.package-more summary::-webkit-details-marker {
  display: none;
}

.package-more summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(249,115,22,.16);
  color: #fb923c;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 900;
  flex: 0 0 auto;
}

.package-more[open] summary::after {
  content: "–";
  background: #f97316;
  color: #ffffff;
}

.package-more-content {
  padding: 0 17px 18px;
}

.package-more-content h4 {
  margin: 4px 0 10px;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.package-more-content p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.70);
  font-size: .94rem;
  line-height: 1.6;
}

.package-more-content ul {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 8px;
}

.package-more-content li {
  list-style: none;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.45;
}

.package-more-content li::before {
  content: "✓";
  margin-right: 8px;
  color: #fb923c;
  font-weight: 900;
}

.package-note {
  margin-top: 16px !important;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.76) !important;
}

.pricing-explain {
  margin-top: 26px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #ffffff;
}

.pricing-explain strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  letter-spacing: -.025em;
}

.pricing-explain p {
  max-width: 980px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

.pricing-explain p + p {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .pricing-lead {
    margin-bottom: 26px;
  }

  .package-more summary {
    padding: 14px 15px;
  }

  .package-more-content {
    padding: 0 15px 16px;
  }

  .pricing-explain {
    padding: 22px;
    border-radius: 22px;
  }
}

/* === PATCH: Premium Pricing Polish + larger brand logo === */

.brand {
  min-width: 250px;
}

.brand-logo {
  height: 52px;
}

.pricing-wrap h2 {
  max-width: 1020px;
}

.pricing-lead {
  max-width: 920px;
  margin: 18px 0 42px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.62;
}

.pricing article {
  display: flex;
  flex-direction: column;
}

.pricing article > p:first-of-type {
  min-height: 78px;
  font-size: 1.06rem;
  line-height: 1.55;
}

.pricing article strong {
  margin-top: 8px;
}

.monthly-explain {
  margin: 8px 0 20px !important;
  color: rgba(255,255,255,.62) !important;
  font-size: .94rem !important;
  line-height: 1.5 !important;
}

.pricing article.highlight .monthly-explain {
  color: #475569 !important;
}

.pricing article > ul {
  margin-top: 0;
}

.package-more {
  margin-top: auto;
}

.package-more-content h4 {
  display: none;
}

.package-more-content p {
  font-size: .92rem;
}

.package-more-content ul {
  gap: 7px;
}

.package-more-content li {
  font-size: .9rem;
}

.package-note {
  font-size: .86rem !important;
  line-height: 1.5 !important;
}

.pricing-explain {
  margin-top: 24px;
  padding: 24px 26px;
}

.pricing-explain p {
  font-size: .98rem;
}

@media (max-width: 1120px) {
  .brand {
    min-width: 220px;
  }

  .brand-logo {
    height: 46px;
  }
}

@media (max-width: 960px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 42px;
  }

  .pricing article > p:first-of-type {
    min-height: unset;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 38px;
  }

  .pricing-lead {
    margin-bottom: 28px;
  }

  .monthly-explain {
    margin-bottom: 18px !important;
  }
}

/* === PATCH: Network Pricing Upgrade === */

.pricing-network-note {
  margin: -18px 0 34px;
  padding: 24px 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(249,115,22,.20), transparent 22rem),
    rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
  color: #ffffff;
}

.pricing-network-note span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(249,115,22,.14);
  color: #fb923c;
  font-size: 12px;
  font-weight: 900;
}

.pricing-network-note strong {
  display: block;
  max-width: 980px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -.035em;
}

.pricing-network-note p {
  max-width: 980px;
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

.network-level {
  margin: 4px 0 22px;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.network-level.base {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.10);
}

.network-level.active {
  background: #fff3eb;
  color: #c2410c;
  border: 1px solid rgba(249,115,22,.22);
}

.network-level.premium {
  background: rgba(249,115,22,.16);
  color: #fed7aa;
  border: 1px solid rgba(249,115,22,.30);
}

/* Mehr Infos im weißen Empfehlungsblock lesbar machen */
.pricing article.highlight .package-more {
  background: rgba(15,23,42,.045);
  border-color: rgba(15,23,42,.10);
}

.pricing article.highlight .package-more summary {
  color: #0f172a;
}

.pricing article.highlight .package-more-content p,
.pricing article.highlight .package-more-content li {
  color: #334155;
}

.pricing article.highlight .package-note {
  background: #f8fafc;
  border-color: rgba(15,23,42,.08);
  color: #475569 !important;
}

/* Ausschlusslogik positiver formuliert */
.package-note {
  background: rgba(249,115,22,.10);
  border-color: rgba(249,115,22,.18);
}

/* Paketlisten ruhiger und klarer */
.pricing article > ul li:first-child {
  font-weight: 900;
}

.pricing article.highlight > ul li:first-child {
  color: #0f172a;
}

@media (max-width: 640px) {
  .pricing-network-note {
    padding: 22px;
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .network-level {
    margin-bottom: 18px;
  }
}

/* === PATCH: Pricing ohne Accordions, mit Detailseiten === */

.package-more {
  display: none !important;
}

.package-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #ffffff;
  font-weight: 900;
  font-size: .92rem;
  text-align: center;
  transition: .18s ease;
}

.package-link:hover {
  transform: translateY(-2px);
  background: rgba(249,115,22,.16);
  border-color: rgba(249,115,22,.35);
}

.pricing article.highlight .package-link {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.pricing article.highlight .package-link:hover {
  background: #f97316;
  border-color: #f97316;
}

.pricing article {
  min-height: 100%;
}

.network-level {
  margin-top: 10px;
  margin-bottom: 20px;
}

/* === PATCH: Package detail pages richer, pricing labels removed === */

.network-level {
  display: none !important;
}

.package-link {
  margin-top: 22px;
}

.package-detail-hero {
  padding-top: 120px;
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 78% 0%, rgba(249,115,22,.10), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.package-detail-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.package-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  margin-top: 38px;
}

.package-detail-card,
.package-side-card {
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 20px 60px rgba(15,23,42,.08);
}

.package-side-card {
  background: #111827;
  color: #ffffff;
}

.package-side-card p {
  color: rgba(255,255,255,.72);
}

.package-detail-card h2,
.package-side-card h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.package-detail-card p,
.package-detail-card li,
.package-side-card li {
  font-size: 1.02rem;
  line-height: 1.72;
  color: #334155;
}

.package-side-card li {
  color: rgba(255,255,255,.82);
}

.package-detail-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
}

.package-detail-list li {
  list-style: none;
  padding-left: 28px;
  position: relative;
}

.package-detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-weight: 900;
}

.package-price-box {
  margin: 30px 0;
  padding: 24px;
  border-radius: 24px;
  background: #111827;
  color: #ffffff;
}

.package-price-box strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -.04em;
}

.package-price-box span {
  display: block;
  margin-top: 6px;
  color: #fb923c;
  font-weight: 900;
  font-size: 1.2rem;
}

.package-detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 860px) {
  .package-detail-grid {
    grid-template-columns: 1fr;
  }

  .package-detail-hero {
    padding-top: 92px;
  }
}

@media (max-width: 640px) {
  .package-detail-card,
  .package-side-card,
  .package-price-box {
    padding: 22px;
    border-radius: 22px;
  }
}

/* === PATCH: Pricing Buttons sauber auf einer Linie === */

.pricing article {
  display: flex;
  flex-direction: column;
}

.pricing article ul {
  flex: 1 1 auto;
}

.pricing article .package-link {
  margin-top: auto;
}

.pricing article.highlight {
  transform: translateY(-22px);
  z-index: 2;
}

/* Einheitliche Buttonhöhe + Position */
.pricing .package-link {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile: kein versetzter Mittelblock */
@media (max-width: 960px) {
  .pricing article.highlight {
    transform: none;
  }
}


/* === PATCH: Conversion Package Detail Pages === */

.package-detail-hero {
  padding: 150px 5vw 90px;
  background:
    radial-gradient(circle at 84% 5%, rgba(255,107,26,.10), transparent 34rem),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.package-detail-wrap {
  max-width: 1180px;
}

.package-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 38px;
  align-items: start;
}

.package-hero-copy h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .92;
  letter-spacing: -.075em;
}

.package-hero-copy .section-lead {
  max-width: 780px;
  margin-top: 26px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  color: #334155;
}

.package-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.package-proof-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  color: #334155;
  font-size: .88rem;
  font-weight: 850;
}

.package-price-card {
  position: sticky;
  top: 120px;
  padding: 30px;
  border-radius: 30px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(15,23,42,.24);
}

.package-price-card .price-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(249,115,22,.15);
  color: #fb923c;
  font-weight: 900;
  font-size: .8rem;
}

.package-price-card strong {
  display: block;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.package-price-card span {
  display: block;
  margin-top: 10px;
  color: #fb923c;
  font-size: 1.25rem;
  font-weight: 900;
}

.package-price-card p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.74);
  line-height: 1.65;
}

.package-price-card .btn {
  width: 100%;
  margin-top: 24px;
}

.package-section {
  margin-top: 34px;
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 22px 65px rgba(15,23,42,.08);
}

.package-section.dark {
  background: #111827;
  color: #ffffff;
}

.package-section.dark p,
.package-section.dark li {
  color: rgba(255,255,255,.78);
}

.package-section h2 {
  margin-top: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.package-section p {
  max-width: 920px;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.78;
}

.package-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 24px;
}

.package-benefit-grid article {
  padding: 22px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.07);
}

.package-benefit-grid h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.package-benefit-grid p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.6;
  color: #475569;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 24px;
  padding: 0;
  margin: 24px 0 0;
}

.package-list li {
  position: relative;
  list-style: none;
  padding-left: 28px;
  color: #334155;
  line-height: 1.55;
  font-weight: 750;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-weight: 950;
}

.package-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 28px;
  border-radius: 28px;
  background: #111827;
  color: #ffffff;
}

.package-next p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
}

.package-next strong {
  font-size: clamp(1.15rem,2vw,1.5rem);
  letter-spacing: -.03em;
}

@media (max-width: 980px) {
  .package-hero-grid {
    grid-template-columns: 1fr;
  }

  .package-price-card {
    position: static;
  }

  .package-benefit-grid,
  .package-list {
    grid-template-columns: 1fr;
  }

  .package-next {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .package-detail-hero {
    padding: 105px 22px 70px;
  }

  .package-section,
  .package-price-card {
    padding: 24px;
    border-radius: 24px;
  }
}


/* =========================================
   PREMIUM PRICING REWORK
========================================= */

.pricing-intro{
  max-width:860px;
  margin:18px auto 0;
  text-align:center;
  color:#cbd5e1;
  font-size:1.08rem;
  line-height:1.7;
}

.pricing article{
  display:flex;
  flex-direction:column;
}

.pricing-target{
  min-height:108px;
}

.pricing-monthly{
  margin-top:10px;
  color:#64748b;
  line-height:1.65;
  min-height:95px;
}

.pricing article ul{
  margin-top:10px;
  flex:1;
}

.pricing article li{
  margin-bottom:12px;
  line-height:1.5;
}

.pricing article li strong{
  color:inherit;
}

.pricing-detail-btn{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:16px 22px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#ffffff;
  font-weight:850;
  text-decoration:none;
  transition:.2s ease;
}

.pricing-detail-btn:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.12);
}

.pricing-detail-btn.dark{
  background:#0f172a;
  border-color:#0f172a;
  color:#ffffff;
}

.pricing-detail-btn.dark:hover{
  background:#111827;
}

.pricing-note{
  margin-top:28px;
  padding:26px;
  border-radius:26px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.pricing-note strong{
  display:block;
  margin-bottom:8px;
  color:#ffffff;
  font-size:1.2rem;
}

.pricing-note p{
  margin:0;
  max-width:1000px;
  color:#cbd5e1;
  line-height:1.75;
}

@media (max-width:960px){

  .pricing-target,
  .pricing-monthly{
    min-height:auto;
  }

  .pricing-detail-btn{
    margin-top:20px;
  }

}


/* === FINAL PACKAGE / ADDON STRUCTURE === */

.pricing-addon-link {
  display: inline-flex;
  margin-top: 16px;
  color: #fb923c;
  font-weight: 900;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
}

.addon-card {
  padding: 26px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(15,23,42,.07);
}

.addon-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem,2vw,1.65rem);
}

.addon-price {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff3eb;
  color: #c2410c;
  font-weight: 900;
}

.addon-card ul {
  margin: 0;
  padding-left: 20px;
  color: #334155;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .addon-grid {
    grid-template-columns: 1fr;
  }
}

/* === Detailseiten Navigation reduzieren === */

.package-detail-hero .nav nav{
  display:none !important;
}

/* === Addon CTA === */

.addon-cta-wrap{
  margin-top:28px;
  display:flex;
  justify-content:flex-start;
}

.addon-btn{
  min-height:54px;
  padding:15px 22px;
  border-radius:16px;
  font-weight:850;
}

@media (max-width:640px){

  .addon-cta-wrap{
    width:100%;
  }

  .addon-btn{
    width:100%;
    justify-content:center;
  }

}


/* === PATCH: Mobile Menü, Hero-Abstände, Kontaktstruktur === */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #111827;
  transition: .18s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-cta {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-action {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.visibility-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.visibility-card-link article {
  height: 100%;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.visibility-card-link:hover article {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,.30);
  box-shadow: 0 24px 70px rgba(15,23,42,.12);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
  color: #0f172a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.14);
  background: #ffffff;
  font: inherit;
  color: #0f172a;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  border: 0;
  cursor: pointer;
}

@media (max-width: 960px) {
  .nav {
    min-height: 78px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .brand-logo {
    height: 38px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 24px 70px rgba(15,23,42,.18);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 16px;
    border-radius: 14px;
    font-weight: 900;
    color: #111827;
  }

  .main-nav a:hover {
    background: #f8fafc;
  }

  .mobile-nav-cta {
    display: flex !important;
    justify-content: center;
    margin-top: 8px;
    background: #f97316 !important;
    color: #ffffff !important;
    box-shadow: 0 14px 34px rgba(249,115,22,.22);
  }

  .nav-cta {
    display: none !important;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-kicker {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 22px;
  }

  .hero h2 {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 72px);
    line-height: .98;
  }

  .hero-kicker {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* === PATCH: Premium Kontaktformular === */

.contact-premium-section {
  padding: clamp(28px, 4vw, 44px);
}

.contact-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.contact-section-head h2 {
  margin-bottom: 10px;
}

.contact-section-head p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.mv-contact-form {
  display: grid;
  gap: 24px;
}

.mv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mv-field {
  display: grid;
  gap: 8px;
}

.mv-field-full {
  grid-column: 1 / -1;
}

.mv-field span {
  color: #0f172a;
  font-weight: 900;
  font-size: .94rem;
}

.mv-field input,
.mv-field select,
.mv-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: #f8fafc;
  color: #0f172a;
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.mv-field textarea {
  min-height: 180px;
  resize: vertical;
}

.mv-field input:focus,
.mv-field select:focus,
.mv-field textarea:focus {
  background: #ffffff;
  border-color: rgba(249,115,22,.55);
  box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}

.mv-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border-radius: 24px;
  background: #111827;
  color: #ffffff;
}

.mv-form-footer p {
  margin: 0;
  max-width: 680px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

.mv-form-footer .btn {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.mobile-nav-cta {
  display: none !important;
}

@media (max-width: 760px) {
  .mv-form-grid {
    grid-template-columns: 1fr;
  }

  .mv-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .mv-form-footer .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .contact-premium-section {
    padding: 22px;
  }

  .mv-field input,
  .mv-field select,
  .mv-field textarea {
    border-radius: 16px;
  }
}

/* === PATCH: Landing Cleanup & Hero Kicker Alignment === */

.hero-kicker {
  justify-content: center;
  text-align: center;
}

.problem-grid strong,
.problem-grid u {
  color: inherit;
  text-underline-offset: 3px;
}

@media (min-width: 961px) {
  .hero-kicker {
    width: fit-content;
    max-width: 100%;
  }
}


/* === PATCH: Premium Gewerke / Beispielseiten === */

.example-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.example-benefit {
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 16px;
  font-size: 15px;
  font-weight: 850;
  color: #111827;
  line-height: 1.45;
}

.example-custom-note {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .example-benefits {
    grid-template-columns: 1fr;
  }

  .example-custom-note {
    text-align: left;
  }
}

/* === PATCH: Leitgewerke & Gewerkegruppen === */

.example-section-intro {
  max-width: 900px;
  margin: -4px 0 28px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.72;
}

.trade-groups-section {
  margin-top: 34px;
}

.trade-groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 26px;
}

.trade-groups-grid article {
  padding: 22px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
}

.trade-groups-grid h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 1.15rem;
  letter-spacing: -.025em;
}

.trade-groups-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.62;
}

@media (max-width: 760px) {
  .trade-groups-grid {
    grid-template-columns: 1fr;
  }
}

/* === PATCH: Kontaktformular Hilfstext === */

.message-help {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: .9rem;
  line-height: 1.45;
  font-weight: 650;
}


/* === PATCH: Kontakt WhatsApp Direktblock === */

.kontakt-direct-whatsapp {
  margin-top: 34px;
  background: linear-gradient(135deg,#071226 0%,#0b1730 100%);
  border-radius: 28px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: 0 24px 60px rgba(2,6,23,.18);
}

.kontakt-direct-whatsapp-text {
  max-width: 760px;
}

.kontakt-direct-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(249,115,22,.18);
  color: #fb923c;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.kontakt-direct-whatsapp h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.8rem,3vw,2.7rem);
  line-height: 1.05;
  font-weight: 850;
}

.kontakt-direct-whatsapp p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 720px;
}

.kontakt-direct-whatsapp-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(135deg,#22c55e 0%,#16a34a 100%);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 16px 40px rgba(34,197,94,.28);
}

.kontakt-direct-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(34,197,94,.38);
}

@media (max-width: 900px) {

  .kontakt-direct-whatsapp {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .kontakt-direct-whatsapp-btn {
    width: 100%;
    min-width: 0;
  }
}


/* === PATCH: Hero Labels nicht mehr wie Buttons === */

.hero .eyebrow,
.hero .hero-kicker {
  display: block;
  width: auto;
  max-width: none;
  padding: 0;
  margin-left: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.hero .eyebrow {
  margin-bottom: 24px;
}

.hero .hero-kicker {
  margin: 30px 0 16px;
}

@media (max-width: 620px) {
  .hero .eyebrow {
    margin-bottom: 22px;
  }

  .hero .hero-kicker {
    margin: 24px 0 16px;
  }
}


/* === PATCH: Eyebrow wieder als Badge darstellen === */

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(203, 213, 225, .75);
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
  width: auto;
  max-width: fit-content;
}


/* === PATCH: Mobile Button Text zentrieren + Addon WhatsApp Float fix === */

/* Alle pillenförmigen CTA-Buttons: Text wirklich mittig */
.btn,
.nav-cta,
.pricing-detail-btn,
.package-link,
.package-next .btn,
.hero-actions .btn,
.section-action .btn,
.faq-cta .btn,
.partner-note .btn,
.examples-note .btn,
button.btn {
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* Mobile: orange Buttons nicht linksbündig umbrechen lassen */
@media (max-width: 640px) {
  .btn,
  .nav-cta,
  .pricing-detail-btn,
  .package-link,
  .package-next .btn,
  .hero-actions .btn,
  .section-action .btn,
  .faq-cta .btn,
  .partner-note .btn,
  .examples-note .btn,
  button.btn {
    text-align: center !important;
    justify-content: center !important;
    white-space: normal;
  }

  .btn.primary {
    padding-left: 26px;
    padding-right: 26px;
  }

  /* Floating WhatsApp auf allen Seiten sauber innerhalb des Viewports */
  .whatsapp-float {
    left: 18px !important;
    right: 18px !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-width: calc(100vw - 36px) !important;
    min-height: 58px;
    padding: 14px 18px !important;
    box-sizing: border-box;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden;
  }

  .whatsapp-float .wa-icon {
    flex: 0 0 auto;
  }

  /* Footer/letzte Inhalte werden nicht vom Float verdeckt */
  body {
    padding-bottom: 86px;
  }
}

/* Addon-Seite: Karten haben genug Abstand zum Floating Button */
@media (max-width: 640px) {
  body:has(.addon-grid) .package-detail-hero {
    padding-bottom: 120px;
  }
}


/* === PATCH: Legal Footer Logo === */

.footer-brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.footer-logo{
  width:auto;
  height:42px;
  display:block;
}

@media (max-width:640px){
  .footer-logo{
    height:36px;
  }
}


/* === PATCH: Legal Header Logo korrekt === */

.legal-header .brand-logo,
.nav .brand-logo {
  display: block;
  height: 42px;
  width: auto;
}

@media (max-width: 640px) {
  .legal-header .brand-logo,
  .nav .brand-logo {
    height: 36px;
  }
}


/* === PATCH: Korrektes Logo in Legal Header === */

.legal-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.legal-brand-logo {
  display: block;
  height: 42px;
  width: auto;
}

@media (max-width: 640px) {
  .legal-brand-logo {
    height: 36px;
  }
}


/* === PATCH: Legal Navigation, WhatsApp auf Legal/AGB, Zurück nach oben === */

.legal-nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

.legal-nav .brand-logo {
  display: block;
  height: 42px;
  width: auto;
}

.legal-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 79;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(15,23,42,.28);
  border: 1px solid rgba(255,255,255,.12);
}

.to-top:hover {
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .legal-main-nav {
    display: none;
  }

  .legal-nav .nav-cta {
    display: inline-flex !important;
  }
}

@media (max-width: 640px) {
  .legal-nav {
    min-height: 76px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .legal-nav .brand-logo {
    height: 36px;
  }

  .legal-nav .nav-cta {
    display: none !important;
  }

  .to-top {
    right: 18px;
    bottom: 90px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}


/* === PATCH: Mobile Home-Anker sauber oben starten === */

html {
  scroll-padding-top: 96px;
}

#home {
  scroll-margin-top: 0;
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 92px;
  }

  #home {
    scroll-margin-top: 0;
  }
}


/* === PATCH: Responsives Menü vollständig + CTA im Dropdown === */

.mobile-nav-cta {
  display: none;
}

@media (max-width: 960px) {
  .mobile-menu-toggle {
    display: inline-flex !important;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 24px 70px rgba(15,23,42,.18);
  }

  .main-nav.is-open {
    display: flex !important;
  }

  .main-nav a {
    padding: 15px 16px;
    border-radius: 14px;
    font-weight: 900;
    color: #111827;
    text-decoration: none;
  }

  .main-nav a:hover {
    background: #f8fafc;
  }

  .main-nav .mobile-nav-cta {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    min-height: 54px;
    background: #ff6b1a !important;
    color: #ffffff !important;
    box-shadow: 0 14px 34px rgba(249,115,22,.22);
    text-align: center;
  }

  .nav > .nav-cta {
    display: none !important;
  }
}


/* === PATCH: Legal-Seiten mobile Überschriften responsiv === */

.legal-page h1,
.legal-page h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 640px) {
  .legal-page h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .legal-page h2 {
    font-size: clamp(26px, 7.8vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .legal-page .section-inner {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 420px) {
  .legal-page h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .legal-page h2 {
    font-size: clamp(24px, 7.2vw, 32px);
  }
}

