:root{
  --bg: #f7f8fa;
  --bg2:#eef1f5;
  --grid: rgba(0,0,0,.04);
  --grid-major: rgba(0,0,0,.08);

  --text: #0b1220;
  --muted: rgba(11, 18, 32, .72);

  --accent1:#00c6ff;
  --accent2:#0072ff;

  --card: rgba(255,255,255,.70);
  --border: rgba(0,0,0,.12);
  --shadow: 0 18px 40px rgba(0,0,0,.12);
}

*{ box-sizing: border-box; }
html, body { margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: transparent;
}

.container{ width: min(1120px, 92vw); margin: 0 auto; }

/* Background Grid */
#scalenet-bg{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background:
    radial-gradient(900px 650px at 28% 38%,
      rgba(0, 114, 255, 0.10),
      rgba(0, 114, 255, 0.04) 45%,
      rgba(0,0,0,0) 72%
    ),
    radial-gradient(1200px 900px at 50% 50%,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,.03) 85%,
      rgba(0,0,0,.05) 100%
    ),
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(var(--grid-major) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-major) 1px, transparent 1px),
    linear-gradient(135deg, var(--bg), var(--bg2));

  background-size:
    auto, auto,
    48px 48px, 48px 48px,
    240px 240px, 240px 240px,
    auto;

  transform: translateZ(0);
}

/* Header bleibt gleich */
.nav{
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(247,248,250,.85);
  border-bottom: 1px solid rgba(0,0,0,.08);
  z-index: 50;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.brand{
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration:none;
  color: inherit;
}
.brand span{ opacity:.7; font-weight: 800; }

.links{
  display:flex;
  gap: 18px;
  align-items:center;
}
.links a{
  text-decoration:none;
  color: inherit;
  opacity:.82;
  font-weight: 800;
}
.links a.active{
  opacity:1;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(0,0,0,.75);
}
.links a:hover{ opacity:1; }

.burger{
  display:none;
  background: transparent;
  border: 0;
  padding: 6px;
}
.burger span{
  display:block;
  width: 22px;
  height: 2px;
  background: rgba(0,0,0,.7);
  margin: 5px 0;
}
.mobile{
  padding: 10px 0 16px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.mobile a{
  display:block;
  padding: 12px 0;
  text-decoration:none;
  color: inherit;
  opacity:.9;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration:none;
  color: inherit;
  font-weight: 900;
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.btn.primary{ border: none; color: white; background: linear-gradient(90deg, var(--accent1), var(--accent2)); }
.btn.ghost{ background: transparent; box-shadow: none; }
.btn.ghost.on-dark{ color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.28); }
.btn.small{ padding: 10px 14px; font-size: 14px; }
.btn.big{ padding: 16px 24px; font-size: 16px; }

/* Sections */
.section{ padding: 74px 0; }
.center{ text-align:center; }
.sub{ margin: 10px 0 0; color: var(--muted); }

/* HERO einzigartig (Agency modern) */
.hero--bm{
  position: relative;
  overflow: hidden;
}


.hero-bm-words{
  position:absolute;
  inset: -30% -10%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: clamp(72px, 10vw, 180px);
  font-weight: 900;
  letter-spacing: .06em;
  color: rgba(255,255,255,.12);
  white-space: nowrap;
  user-select: none;
  pointer-events:none;
}
.hero-wrap{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
}
.kicker{ margin: 48px 0 12px; font-weight: 900; letter-spacing:.04em; }
.kicker--light{ color: rgba(255,255,255,.75); }
.hero h1{
  margin: 0;
  color: rgba(255,255,255,.95);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
}
.lead{ margin: 14px 0 0; font-size: 16px; line-height: 1.6; }
.lead--light{ color: rgba(255,255,255,.78); }
.cta{ margin-top: 18px; margin-bottom: 48px; display:flex; gap: 12px; flex-wrap: wrap; }

.hero-proof .glass{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.40);
  background: rgba(255,255,255,.29);
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
  padding: 18px;
}
.glass-top{ display:flex; gap: 8px; flex-wrap: wrap; }
.pill{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 900;
  font-size: 12px;
}
.muted-on-dark{ color: rgba(255,255,255,.75); line-height: 1.7; margin: 12px 0 0; }

/* Vorteile: eigenes Design */
.section--vorteile .section-head.center{ text-align:center; }
.section--vorteile h2{ margin:0; font-size: 34px; }
.benefits{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-card{
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 16px 42px rgba(0,0,0,.10);
  padding: 18px;
  position: relative;
  overflow:hidden;
}
.benefit-card::before{
  content:"";
  position:absolute;
  inset:-20%;
  background: radial-gradient(500px 220px at 30% 10%, rgba(0,114,255,.10), rgba(0,0,0,0) 70%);
  pointer-events:none;
}
.benefit-no{
  position: relative;
  font-weight: 900;
  font-size: 34px;
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0,0,0,.75);
}
.benefit-card h3{
  position: relative;
  margin: 12px 0 8px;
  font-size: 16px;
  letter-spacing: .02em;
}
.benefit-card p{
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Angebot/Dienstleistungen: großes Panel + kleine Kästchen */
.offer-shell{
  border-radius: 26px;
  padding: 34px 22px 26px;
  background:
    radial-gradient(900px 520px at 65% 20%, rgba(0,198,255,.16), rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(0,0,0,.90), rgba(0,0,0,.86));
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.offer-head{
  text-align:center;
  color: rgba(255,255,255,.92);
}
.offer-head h2{ margin:0; font-size: 32px; }
.offer-sub{ margin: 10px 0 0; color: rgba(255,255,255,.72); }

.offer-grid{
  margin-top: 24px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.offer-item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.offer-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.30);
}
.oi-ic{
  width: 26px;
  display:inline-flex;
  justify-content:center;
  opacity: .95;
}
.offer-item--wide{
  grid-column: 2 / 3;
  justify-content:center;
}

/* Content/Blog: eigenes Design (Split + mini proof) */
.section--content h2{ margin:0; font-size: 32px; }
.content-split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items:start;
}
.content-card{
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.62);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  padding: 18px;
}
.content-card h3{ margin: 0 0 8px; }
.muted{ color: var(--muted); }

.mini-proof{
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.60);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  overflow:hidden;
}
.mini-proof-top{
  padding: 12px 14px;
  font-weight: 900;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.65);
}
.mini-proof-body{
  padding: 18px 14px;
}
.mini-proof-title{
  font-weight: 900;
  font-size: 22px;
}
.mini-proof-text{
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA Section: eigenes Design */
.section--cta{
  padding: 56px 0 86px;
}
.section--cta .btn.big{
  box-shadow: 0 22px 60px rgba(0,0,0,.14);
}

/* Footer (darf gleich bleiben) */
.footer{
  padding: 56px 0 22px;
  background: rgba(255,255,255,.70);
  border-top: 1px solid rgba(0,0,0,.10);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 28px;
}
.footer h4{
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: .04em;
}
.foot-list{
  list-style:none;
  margin: 0;
  padding: 0;
  display:grid;
  gap: 10px;
}
.foot-list a{
  color: rgba(0,0,0,.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer a{ color: rgba(0,0,0,.85); }
.social{
  margin-top: 18px;
  display:flex;
  gap: 12px;
}
.social-btn{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.08);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  font-weight: 900;
}
.foot-bottom{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.tiny{ font-size: 12px; }

/* Responsive */
@media (max-width: 980px){
  .links{ display:none; }
  .burger{ display:block; }

  .hero-wrap{ grid-template-columns: 1fr; }
  .benefits{ grid-template-columns: 1fr; }
  .offer-grid{ grid-template-columns: 1fr; }
  .offer-item--wide{ grid-column: auto; }

  .content-split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* füllt genau die gleiche Größe wie der graue Block */
  z-index: 0;
  filter: brightness(.25) saturate(1.05);
}

/* sorgt dafür, dass Text/Buttons über dem Video bleiben */
.hero--bm .hero-bm-words,
.hero--bm .hero-wrap{
  position: relative;
  z-index: 2;
}

.brand-logo img{
  height: 28px;        /* ← Hauptgröße (24–32px testen) */
  width: auto;
  max-width: 180px;    /* verhindert Vollbild-Explosion */
  display: block;
  object-fit: contain;
}


@media (max-width: 768px){
  .brand-logo img{
    height: 24px;
  }
}

.brand.brand-logo{
  letter-spacing: normal;
}

/* Instagram Card (embedded) */
.instagram-card{
  width: 360px;
  max-width: 100%;
  background: rgba(255,255,255,.85);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  margin: 0 auto;
}

.ig-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.8);
}

.ig-profile{ display:flex; align-items:center; gap:10px; }
.ig-avatar{
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  padding: 2px;
}
.ig-avatar-inner{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
}

.ig-name{ font-weight: 700; font-size: 14px; }

.ig-header-btn{
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #0095f6;
  color: #fff;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-weight: 700;
}

/* 4:5 Post Area */
.ig-post-wrapper{
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  overflow: hidden;
  background: #000;
}

.ig-post-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.ig-post-image.hidden{ opacity: 0; pointer-events: none; }

.ig-carousel-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 10;
}
.ig-carousel-arrow-left{ left: 10px; }
.ig-carousel-arrow-right{ right: 10px; }

.ig-dots{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 10;
}
.ig-dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}
.ig-dot.active{ background: #fff; }

.ig-footer{
  padding: 12px 14px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.85);
}
.ig-footer-btn{
  font-size: 12px;
  color: #0095f6;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 480px){
  .instagram-card{ width: 92%; max-width: 360px; }
  .ig-header{ padding: 8px 10px; }
  .ig-avatar{ width: 30px; height: 30px; }
  .ig-name{ font-size: 12px; }
  .ig-header-btn{ font-size: 11px; padding: 4px 10px; }
  .ig-footer-btn{ font-size: 11px; }
}

/* Pricing Section */
.section--pricing .section-head{ margin-bottom: 22px; }
.section--pricing .sub{ margin-top: 10px; }

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.pricing-table-wrap{
  margin-top: 26px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.70);
  box-shadow: 0 16px 46px rgba(0,0,0,.10);
  overflow: hidden;
}

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.modal.is-open{ display: block; }

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

.modal-panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  height: min(720px, 86vh);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}

.modal-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.8);
  cursor: pointer;
  font-weight: 900;
  z-index: 2;
}

.modal-iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .modal-panel{ height: 88vh; }
}

/* ===== Pricing Section Layout ===== */
.section--pricing .section-head{ margin-bottom: 18px; }

.pf_promo-pill{
  margin: 18px auto 0;
  width: min(680px, 92vw);
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.75);
  border: 2px solid rgba(0,0,0,.75);
  box-shadow: 0 18px 40px rgba(0,114,255,.20);
  font-weight: 900;
}

/* Grid */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}

/* ===== Card Buttons (eigene Klasse, damit nix kollidiert) ===== */
.pf_card-btn{
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.pf_card-btn:hover{
  background:#333;
  transform: translateY(-2px);
}

/* ===== Cards (aus deiner Datei, aber responsive-freundlich gemacht) ===== */
.pf_small-note{ color:#8A8A8A; font-size:.85em; margin-top: 2px; }

.starter-card,
.business-card{
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 28px;
  width: 100%;          /* FIX: statt fix 320px */
  margin: 0;            /* FIX: Grid steuert Abstand */
  text-align: center;
  font-family: inherit; /* FIX: keine Arial-Überschreibung */
  transition: transform 0.25s, box-shadow 0.25s;
}
.starter-card:hover,
.business-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
}

.premium-card{
  position: relative;
  background: linear-gradient(to bottom, #ecfafe, #ffffff);
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  padding: 28px;
  width: 100%;          /* FIX: statt fix 340px */
  margin: 0;
  text-align: center;
  font-family: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}
.premium-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.starter-card h3,
.business-card h3,
.premium-card h3{ font-size: 1.9em; margin-bottom: 6px; }

.starter-card p,
.business-card p,
.premium-card p{ color:#666; font-size:.95em; margin-bottom: 18px; }

.starter-card .price,
.business-card .price,
.premium-card .price{ font-size: 2em; font-weight: 900; color:#111; }

.premium-card .price{ font-size: 2.1em; }

.old-price{ text-decoration: line-through; color:#999; font-size:.9em; margin-right: 8px; }

.starter-card ul,
.business-card ul,
.premium-card ul{
  list-style:none;
  padding:0;
  text-align:left;
  margin: 18px 0 22px;
}
.starter-card ul li,
.business-card ul li,
.premium-card ul li{
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: .95em;
}
.starter-card ul li::before,
.business-card ul li::before,
.premium-card ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#4caf50;
  font-weight: 900;
}

.premium-card .tag{
  position:absolute;
  top: 14px;
  right: 14px;
  background:#0d47a1;
  color:#fff;
  font-size:.8em;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

/* ===== Table (aus deiner Datei, aber ohne riesigen Außenabstand) ===== */
.pf_table-wrapper{
  width: 100%;
  background:#ffffff;
  border-radius:14px;
  box-shadow: 0 0 0 1px #e3e3e3;
  overflow:hidden;
  margin: 26px 0 0; /* FIX: statt 40px auto */
}

.pf_pricing-table{
  width:100%;
  border-collapse:collapse;
  table-layout: fixed;
}

.pf_pricing-table thead{ background:#f3f4f6; }

.pf_pricing-table th{
  padding: 10px;
  font-size: 14px;
  font-weight: 900;
  color:#4b5563;
  text-align:left;
  border-bottom:1px solid #e5e7eb;
}

.pf_pricing-table thead th:nth-child(4){ color:#2563eb; }

.pf_pricing-table th:nth-child(n+2){ text-align:center; }

.pf_pricing-table td{
  padding: 12px 10px;
  font-size: 14px;
  color:#111827;
  border-bottom:1px solid #e5e7eb;
}

.pf_pricing-table td:nth-child(n+2){ text-align:center; }

.pf_check{ color:#10b981; font-size:18px; font-weight:900; }
.pf_dash{ color:#9ca3af; font-size:16px; }

.pf_note{
  padding: 14px 16px;
  font-size: 12px;
  color:#6b7280;
  font-style: italic;
}

/* ===== Mobile Table: horizontal scroll (wichtig!) ===== */
@media (max-width: 820px){
  .pf_table-wrapper{ overflow-x: auto; }
  .pf_pricing-table{ min-width: 720px; } /* damit nix zerquetscht */
}

/* ===== Responsive Grid ===== */
@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: 1fr; }
}

/* ===== Modal ===== */
.modal{ position: fixed; inset: 0; z-index: 9999; display: none; }
.modal.is-open{ display: block; }
.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}
.modal-panel{
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  height: min(720px, 86vh);
  background:#fff;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  overflow:hidden;
}
.modal-close{
  position:absolute;
  top: 10px; right: 10px;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  font-weight: 900;
  z-index: 2;
}
.modal-iframe{ width:100%; height:100%; border:0; }

.starter-card .cta,
.business-card .cta,
.premium-card .cta{
  display: flex;
  justify-content: center;
}

.section--pricing h2{
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* ===== Legal Pages (Impressum / Datenschutz) ===== */

.section--legal{
  padding-top: 60px;
  padding-bottom: 80px;
}

.legal{
  max-width: 860px;
  line-height: 1.7;
}

.legal h1{
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.legal-intro{
  color: #6b7280;
  margin-bottom: 36px;
}

.legal-block{
  margin-bottom: 36px;
}

.legal h2{
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.legal h3{
  font-size: 1rem;
  margin-top: 18px;
  margin-bottom: 6px;
}

.legal p{
  margin-bottom: 10px;
  color: #111827;
}

.legal a{
  color: #2563eb;
  text-decoration: underline;
}

@media (max-width: 640px){
  .section--legal{
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

/* ===== Legal Content Box ===== */

.legal-box{
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 10px 30px rgba(0,0,0,.08),
    0 0 0 1px rgba(0,0,0,.06);
  padding: 48px 48px;
}

.legal{
  max-width: 820px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 640px){
  .legal-box{
    padding: 28px 22px;
    border-radius: 14px;
  }
}

.legal-list{
  margin: 10px 0 10px 18px;
}
.legal-list li{
  margin: 6px 0;
}


/* =========================
   HERO Proof Box – Mobile Fix (clean)
   ========================= */
@media (max-width: 768px) {

  section.hero.hero--bm .hero-wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
  }

  section.hero.hero--bm .hero-proof{
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;

    width: min(92vw, 420px) !important;
    margin: 18px auto 0 !important;
    z-index: 1 !important;
  }

  section.hero.hero--bm{
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 28px !important;
  }

  section.hero.hero--bm .hero-proof .glass{
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  /* Abstand zwischen Buttons und der grauen Box kleiner */
  section.hero.hero--bm .hero-wrap { 
    gap: 14px !important; 
  }

  section.hero.hero--bm .hero-proof { 
    margin-top: 10px !important; 
  }

  /* falls der Abstand eher vom CTA kommt */
  section.hero.hero--bm .cta { 
    margin-bottom: 0 !important; 
  }
}

/* 📞 Jetzt anrufen – nur Mobile */
.call-now-mobile {
  display: none;
}

@media (max-width: 768px) {
  .call-now-mobile {
    display: flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 9999;

    padding: 10px 14px;
    border-radius: 999px;

    background: #0ea5e9; /* dein Blau */
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 8px 20px rgba(14,165,233,.35);
  }

  .call-now-mobile:active {
    transform: scale(0.96);
  }
}

@media (max-width: 768px) {

  /* 1) Menü-Inhalte zentrieren */
  header.nav .mobile{
    text-align: center !important;
    align-items: center !important;
  }

  header.nav .mobile a{
    display: inline-flex !important;   /* damit es nicht die ganze Breite nimmt */
    justify-content: center !important;
    font-weight: 700 !important;       /* 2) Schrift dick wie beim Button */
  }

  /* 3) Blog-Button soll NICHT full width sein */
  header.nav .mobile .btn{
    width: auto !important;
    min-width: 0 !important;
    padding: 10px 14px !important;     /* Größe wie Text + Pfeil */
    display: inline-flex !important;
  }

  /* falls irgendwo eine Regel "width:100%" auf allen Mobile-Links liegt */
  header.nav .mobile a.btn,
  header.nav .mobile a{
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {

  /* WICHTIG: hidden muss IMMER gewinnen */
  header.nav .mobile[hidden]{
    display: none !important;
  }

  /* Nur wenn NICHT hidden, dann flex */
  header.nav .mobile:not([hidden]){
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 18px 16px !important;
  }

  header.nav .mobile a:not(.btn){
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-weight: 800 !important;
  }

  header.nav .mobile .btn{
    width: fit-content !important;
    padding: 10px 16px !important;
    font-weight: 800 !important;
    align-self: center !important;
  }
}

/* =========================
   6 Einzel-Blöcke (3 links, 3 rechts)
   ========================= */

.section.duo-steps{
  padding-top: 40px;
  padding-bottom: 40px;
}

.duo-steps-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}

.duo-col{
  display:grid;
  gap: 18px;
}

/* leichte Farb-Unterscheidung je Seite */
.duo-col--a .step-card{
  background: rgba(255,255,255,.78);
}
.duo-col--b .step-card{
  background: rgba(220,245,255,.55);
}

/* einzelne Card */
.step-card{
  border-radius: 26px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

/* Kopf: Nummer + Titel */
.step-head{
  display:flex;
  align-items:center;
  gap: 12px;
}

.step-num{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 16px;
  color: #0b1220;

  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.10);
}

.step-card h3{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #0b1220;
  letter-spacing: .2px;
}

/* blaue Trennlinie wie im Screenshot */
.step-line{
  height: 5px;
  width: 100%;
  margin: 12px 0 12px;
  border-radius: 999px;
  background: #00a6ff;
  opacity: .95;
}

/* Text schwarz/gut lesbar */
.step-card p{
  margin: 0;
  color: rgba(11,18,32,.78);
  line-height: 1.7;
  font-size: 15px;
}

/* Mobile: untereinander */
@media (max-width: 768px){
  .duo-steps-grid{
    grid-template-columns: 1fr;
  }
  .step-card{
    border-radius: 22px;
    padding: 16px 14px 14px;
  }
  .step-card h3{
    font-size: 18px;
  }
  .step-num{
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

/* ===== Split-Layout wie Screenshot (3 links / 3 rechts) ===== */

.feature-split{
  padding: 44px 0;
}

.feature-split-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

/* leichte farbliche Unterscheidung wie gewünscht */
.feature-col{
  border-radius: 26px;
  padding: 8px 0;
}
.feature-col--a{ background: rgba(255,255,255,0.00); }
.feature-col--b{ background: rgba(0,166,255,0.03); }

/* Eine Zeile: Nummer links, Text rechts */
.feature-row{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
}

/* Nummer im Kreis (wie im Screenshot) */
.feature-num{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  color: #fff;

  /* dunkler Kreis + leichte Kontur */
  background: rgba(13, 18, 32, 0.88);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.feature-text h3{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: #0b1220; /* schwarz/dunkel */
}

.feature-text p{
  margin: 0;
  color: rgb(11, 18, 32);
  line-height: 1.65;
  font-size: 15px;
}

/* Trennlinie (deine roten Striche) */
.feature-sep{
  height: 1px;
  width: 100%;
  background: rgba(0,0,0,0.10);
}

/* Mobile: untereinander */
@media (max-width: 768px){
  .feature-split-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .feature-row{
    grid-template-columns: 56px 1fr;
    padding: 14px 0;
  }
  .feature-num{
    width: 46px;
    height: 46px;
    font-size: 16px;
  }
}

/* Sichtbare Hintergrund-Blocks für die beiden Spalten */
.feature-col{
  border-radius: 26px;
  padding: 22px 22px;          /* wichtig: vorher war 8px 0 -> kaum Block sichtbar */
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: 0 18px 45px rgba(11,18,32,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Links: neutral/weiß */
.feature-col--a{
  background: rgba(255,255,255,.70);
}

/* Rechts: leicht blau getönt (nur zur Unterscheidung) */
.feature-col--b{
  background: rgba(0,166,255,.10);
}

/* Optional: damit die Spalten bis nach unten "gleich hoch" wirken */
.feature-split-grid{
  align-items: stretch;
}

/* =========================
   FAQ (pf_ prefix)
   ========================= */

.pf_wrap{
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.pf_header{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
}

.pf_logo{
  width:64px;
  height:64px;
  border-radius:14px;
  background: rgba(0,0,0,.05);
  display:flex;
  align-items:center;
  justify-content:center;
}

.pf_h1{
  margin:0;
  font-size:22px;
  font-weight:800;
  color:#111827;
}

.pf_lead{
  margin:4px 0 0;
  color:#6b7280;
  font-size:14px;
}

.pf_card{
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 12px 34px rgba(0,0,0,.10);
  border:1px solid rgba(0,0,0,.04);
}

.pf_faqlist{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.pf_item{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
}

.pf_qbtn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  gap:12px;
  width:100%;
  cursor:pointer;
  background:transparent;
  border:0;
}

.pf_qtext{
  display:flex;
  flex-direction:column;
  gap:4px;
  text-align:left;
}

.pf_qtitle{
  font-weight:800;
  color:#111827;
}

.pf_qmeta{
  font-size:13px;
  color:#6b7280;
}

.pf_chev{
  width:36px;
  height:36px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.05);
  transition: transform .32s cubic-bezier(.2,.9,.2,1);
}

.pf_chev svg{
  stroke:#111827;
  transform-origin:center;
}

.pf_answer{
  max-height:0;
  overflow:hidden;
  padding:0 18px;
  transition:
    max-height .44s cubic-bezier(.2,.9,.2,1),
    padding .28s ease;
}

.pf_answer p{
  margin:14px 0;
  color:#374151;
  line-height:1.55;
}

.pf_item.pf_open .pf_answer{
  padding-bottom:18px;
  padding-top:6px;
}

.pf_item.pf_open .pf_chev{
  transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 768px){
  .pf_logo{ width:52px; height:52px; }
  .pf_h1{ font-size:20px; }
  .pf_card{ padding:14px; }
  .pf_qbtn{ padding:14px 14px; }
}

/* =========================
   FAQ – größere Titel
   ========================= */

/* Desktop */
.pf_qtitle{
  font-size: 17px;
  line-height: 1.35;
}

/* Mobile */
@media (max-width: 768px){
  .pf_qtitle{
    font-size: 18px;
    line-height: 1.4;
  }
}

.section-head{
  text-align: center;
  margin-bottom: 36px;
}

.section-title{
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: #0b1220;
  margin: 0;
}

.section-subtitle{
  margin-top: 8px;
  color: rgba(11,18,32,.65);
  font-size: 15px;
}

/* ===== Lead Rotator – Premium Flip (ohne Glint/Streifen) ===== */

.lead-rotator{
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25;
  color: rgba(255,255,255,.80);
  font-weight: 700;
}

.rotator{
  display: inline-block;
  position: relative;
  margin-left: .35em;
  vertical-align: baseline;
  min-width: 14ch;
  height: 1.25em;
  perspective: 900px;
}

.rotator-word{
  position: absolute;
  left: 0;
  top: 0.20em;
  white-space: nowrap;
  font-weight: 900;

  /* Gradient Text */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1);
  /* filter: blur(12px); */
  transform-origin: 50% 70%;

  /* transition:
    opacity .65s ease,
    transform .85s cubic-bezier(.16,1,.18,1),
    filter .85s ease; */
}

/* Optional: sehr subtiler Glow (kein Streifen) */
.rotator-word.is-visible{
  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1);
  filter: blur(0);
  text-shadow: 0 10px 28px rgba(0,0,0,.35);
}

/* Gradients */
.rot-blue{   background-image: linear-gradient(90deg, #00a6ff, #66dbff); }
.rot-red{    background-image: linear-gradient(90deg, #ff6b6b, #ffb1b1); }
.rot-yellow{ background-image: linear-gradient(90deg, #ffd54a, #fff0a6); }

/* Mobile */
@media (max-width: 768px){
  .lead-rotator{ font-size: 18px; line-height: 1.3; }
  .rotator{ min-width: 0; }
  .rotator-word{ top: 0.25em; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .rotator-word{
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
  /* .rotator-word.is-bounce{ animation: none !important; } */
}

/* ===============================
   Angebot – Premium Scroll Reveal
================================ */

/* Phase 1 – Container */
.reveal-stage{
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .4s ease, transform .4s ease;
}
.reveal-stage.is-visible{
  opacity: 1;
  transform: scale(1);
}

/* Phase 2 – Headline */
.reveal-head,
.reveal-sub{
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .4s ease, transform .4s ease;
}
.reveal-stage.is-visible .reveal-head{
  opacity: 1;
  transform: translateY(0);
}
.reveal-stage.is-visible .reveal-sub{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .1s;
}

/* Phase 3 – Cards */
.reveal-card{
  opacity: 0;
  transform: translateY(12px);
  filter: blur(6px);
  transition:
    opacity .45s ease,
    transform .45s ease,
    filter .45s ease;
}
.reveal-card.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Phase 4 – More */
.reveal-more{
  opacity: 0;
  transition: opacity .4s ease;
}
.reveal-more.is-visible{
  opacity: 1;
  transition-delay: .2s;
}

/* Hover Micro-Interaction */
.service-card{
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{
  transform: scale(1.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

/* Vorteile – Reveal */
.v-reveal{
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}

.v-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Blog – Reveal Slide */
.reveal-left,
.reveal-right{
  opacity: 0;
  filter: blur(8px);
  transition: transform 1.05s cubic-bezier(.16,1,.3,1),
              opacity .85s ease,
              filter 1.05s ease;
  will-change: transform, opacity, filter;
}

.reveal-left{ transform: translateX(-28px); }
.reveal-right{ transform: translateX(28px); }

.reveal-left.is-visible,
.reveal-right.is-visible{
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right{
  transition-delay: .12s;
}


/* optional: auf Handy etwas weniger Slide */
@media (max-width: 768px){
  .reveal-left{ transform: translateX(-18px); }
  .reveal-right{ transform: translateX(18px); }
}

/* ================================
   PROMO TICKER – Endlos, ohne Lücken
   ================================ */

.pf-ticker{
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* sanfter Fade links & rechts */
.pf-ticker::before,
.pf-ticker::after{
  content:"";
  position:absolute;
  top:0;
  width:48px;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.pf-ticker::before{
  left:0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}
.pf-ticker::after{
  right:0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

.pf-ticker-inner{
  display:flex;
  width:max-content;
  gap:0;
  will-change: transform;
  animation: pf-ticker-loop 18s linear infinite;
}

/* jeder Track: Inhalte am Stück */
.pf-ticker-track{
  display:flex;
  gap:40px;
  padding: 0 20px;
  flex-shrink: 0;
  width:max-content;
}

.pf-ticker-track span{
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Endlos: wir schieben genau um 50% (weil Track 1 = Track 2) */
@keyframes pf-ticker-loop{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* 📱 Mobile: bisschen langsamer */
@media (max-width: 768px){
  .pf-ticker-inner{ animation-duration: 22s; transform: translate3d(0,0,0); }
  .pf-ticker-track span{ font-size: 14px; }
}

.social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  transition: transform .2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
}

.social-btn img {
  width: 20px;
  height: 20px;
}

.footer-video video {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  pointer-events: none;
}

.footer-video {
  max-width: 200px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .footer-video {
    max-width: 100px;
  }
}

.footer-video-el{
  background: transparent;
  display:block;
}

/* Footer-Video nur auf Desktop anzeigen */
@media (max-width: 768px) {
  .footer-video {
    display: none !important;
  }
}

/* Services-Icons fix skalieren */
.offer-item .oi-ic{
  width: 30px;          /* <- Größe anpassen */
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;       /* verhindert, dass es sich streckt */
}

.offer-item .oi-ic img{
  width: 100%;
  height: 100%;
  object-fit: contain;  /* SVG bleibt sauber */
  display: block;
}

@media (max-width: 768px){
  .offer-item .oi-ic{
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }
}

/* ===== Profil-Ads: eigenes Reveal (nur #profil-ads) ===== */
#profil-ads .js-fsplit-col,
#profil-ads .js-fsplit-item{
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 1600ms cubic-bezier(.2,.9,.2,1),
    transform 1600ms cubic-bezier(.2,.9,.2,1);
  will-change: transform, opacity;
}

/* Spalten: Startposition links/rechts */
#profil-ads .feature-col--a.js-fsplit-col{ transform: translate3d(-22px, 0, 0); }
#profil-ads .feature-col--b.js-fsplit-col{ transform: translate3d( 22px, 0, 0); }

/* Wenn sichtbar */
#profil-ads.is-inview .js-fsplit-col,
#profil-ads.is-inview .js-fsplit-item{
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* Optional: Motion reduzieren */
@media (prefers-reduced-motion: reduce){
  #profil-ads .js-fsplit-col,
  #profil-ads .js-fsplit-item{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   PRICING REVEAL – Premium Ablauf (ohne Layout ändern)
   Trigger: JS fügt .pricing-in hinzu
   ========================= */

:root{
  --pricing-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Startzustand: unsichtbar + blur */
.pricing-card,
.pf_table-wrapper{
  will-change: transform, opacity, filter, box-shadow;
}

/* Initial states (vor Reveal) */
.pricing-card[data-pricing-reveal],
.pf_table-wrapper[data-pricing-reveal]{
  opacity: 0;
  filter: blur(8px);
}

/* -------------------------
   Starter (von links)
   ------------------------- */
.starter-card[data-pricing-reveal]{
  transform: translate3d(-120px, 0, 0);
  transition:
    transform 1500ms var(--pricing-ease),
    opacity 1500ms var(--pricing-ease),
    filter 1500ms var(--pricing-ease);
}

/* -------------------------
   Business Highlight (von rechts) -> bei dir .premium-card
   Delay +200ms
   ------------------------- */
.premium-card[data-pricing-reveal]{
  transform: translate3d(120px, 0, 0);
  transition:
    transform 1300ms var(--pricing-ease) 200ms,
    opacity 1300ms var(--pricing-ease) 200ms,
    filter 1300ms var(--pricing-ease) 200ms;
}

/* -------------------------
   Basic (Zoom-Focus) -> bei dir .business-card
   Start 0.5s, Dauer 0.7s, Pop am Ende
   ------------------------- */
.business-card[data-pricing-reveal]{
  transform: translate3d(0,0,0) scale(0.70);
  transition:
    transform 700ms var(--pricing-ease) 500ms,
    opacity 700ms var(--pricing-ease) 500ms,
    filter 700ms var(--pricing-ease) 500ms,
    box-shadow 700ms var(--pricing-ease) 500ms;
}

/* Pop-Moment: scale 1.02 -> 1 */
.business-card[data-pricing-reveal].pricing-in{
  animation: pricingPop 500ms var(--pricing-ease) 200ms both;
}

/* Pop Animation: geht nur auf transform, bleibt am Ende bei scale(1) */
@keyframes pricingPop{
  0%   { transform: scale(0.70); }
  75%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* -------------------------
   Tabelle: Clean Fade-Up (1.3s – 1.8s)
   ------------------------- */
.pf_table-wrapper[data-pricing-reveal]{
  transform: translate3d(0, 40px, 0);
  transition:
    transform 500ms var(--pricing-ease) 1300ms,
    opacity 500ms var(--pricing-ease) 1300ms,
    filter 500ms var(--pricing-ease) 1300ms;
}

/* -------------------------
   Wenn sichtbar
   ------------------------- */
.pricing-in[data-pricing-reveal]{
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0);
}

/* Für business-card: transform wird durch animation übernommen,
   deswegen hier NICHT global überschreiben */
.business-card.pricing-in[data-pricing-reveal]{
  opacity: 1;
  filter: blur(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .pricing-card[data-pricing-reveal],
  .pf_table-wrapper[data-pricing-reveal]{
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* =========================================
   PRICING REVEAL: Auf Handy komplett deaktivieren
   ========================================= */
@media (max-width: 768px){
  /* alles sofort sichtbar + keine Animation */
  #pricing [data-pricing-reveal]{
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }
}

/* Angebots-Switcher (wie Screenshot) */
.offer-switch{
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px auto 16px;
  justify-content: center;
}

.offer-tab{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 18px;              /* groß wie Screenshot */
  line-height: 1.05;
  color: rgba(11,18,32,.95);
  cursor: pointer;
  border-radius: 999px;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.offer-tab.is-active{
  background: rgba(11,18,32,.14);
  color: #1e88ff;               /* blau wie Screenshot */
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}

.offer-tab:active{ transform: scale(.98); }

/* Panels + weicher Wechsel */
.offer-panel{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.offer-panel.is-active{
  opacity: 1;
  transform: none;
}

/* Optional: wenn nur 1 Karte gezeigt wird */
.pricing-grid--single{
  grid-template-columns: 1fr !important;
  max-width: 520px;
  margin: 0 auto;
}

/* Mobile: Buttons kleiner und gut klickbar */
@media (max-width: 768px){
  .offer-switch{
    gap: 12px;
    margin: 14px auto 18px;
  }
  .offer-tab{
    font-size: 20px;
    padding: 10px 12px;
  }
}


.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #ffffff;
  color: #111;
  text-decoration: none;

  padding: 6px 18px;
  border-radius: 999px;

  font-weight: 500;
  font-size: 14px;

  width: fit-content;
  margin-bottom: 12px; /* ✅ Abstand nach unten */
  /* ✅ Blaue Umrandung */
  border: 2px solid #2563eb;

  transition: all 0.25s ease;
}

/* Hover Effekt */
.contact-pill:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── macOS Browser Tab (Footer, dekorativ) ── */
.macos-tab {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  max-width: 240px;
  user-select: none;
  pointer-events: none;
}

.macos-tab-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.macos-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.macos-dot--red    { background: #ff5f57; }
.macos-dot--yellow { background: #febc2e; }
.macos-dot--green  { background: #28c840; }

.macos-tab-body {
  padding: 8px 10px 10px;
}

.macos-tab-video {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.macos-tab-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #555;
  margin: 0 0 0 6px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Typewriter Cursor ── */
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.rotator-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: rgba(255,255,255,.78);
  margin-left: 3px;
  vertical-align: middle;
  border-radius: 1px;
}

.rotator-cursor.blinking {
  animation: cursorBlink 0.6s step-end infinite;
}
