:root{
  /* Brand */
  --primary: #2563eb;          /* Blau */
  --secondary: #0f172a;        /* Slate-900 */
  --accent: #fbbf24;           /* Amber */

  /* Surfaces */
  --bg: #f7f8fb;
  --white: #ffffff;
  --surface: rgba(255,255,255,0.92);

  /* Text */
  --text: #0f172a;
  --muted: #475569;

  /* Borders/shadows */
  --border: rgba(15,23,42,0.10);
  --border-strong: rgba(15,23,42,0.14);
  --shadow-sm: 0 10px 28px rgba(2,6,23,0.06);
  --shadow: 0 22px 70px rgba(2,6,23,0.08);

  /* Radius & layout */
  --radius: 16px;
  --radius-lg: 22px;
  --max: 1120px;

  /* Type scale */
  --h1: clamp(30px, 4vw, 52px);
  --h2: clamp(22px, 2.4vw, 34px);
  --h3: 18px;
}

*{ box-sizing:border-box; }
html, body{ height: 100%; }
html {
  scroll-padding-top: 72px;
  scroll-behavior: smooth; /* optional */
}

/* Extra robust: auch pro Section Abstand */
#services, #steps, #benefits, #stats, #contact{
  scroll-margin-top: 76px;
}


body{
  margin:0;
    padding-top: 72px; /* auf deine Nav-Höhe anpassen */
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(37,99,235,0.10), transparent 60%),
    radial-gradient(1000px 700px at 90% 0%, rgba(251,191,36,0.10), transparent 55%),
    var(--bg);
}

h1,h2,h3,h4{
  font-family: Outfit, ui-sans-serif, system-ui;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--secondary);
}

p{ margin: 0; }
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

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

/* ---------------------------
   NAV
---------------------------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;

  background: rgba(247,248,251,0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);

  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}


.nav-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color: var(--secondary);
}

.brand-dot{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(99,102,241,1));
  box-shadow: 0 10px 24px rgba(37,99,235,0.20);
}

.nav-actions{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap:wrap;
}

/* Mobile menu */
#menuBtn{ display:none; }
.mobile-menu{
  border-top: 1px solid var(--border);
  background: rgba(247,248,251,0.80);
  backdrop-filter: blur(14px);
}
.mobile-menu-inner{
  display:grid;
  gap: 10px;
  padding: 14px 0;
}

/* ---------------------------
   BUTTONS
---------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.80);
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
  font-weight: 850;
  color: var(--secondary);
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(37,99,235,0.22);
}

.btn:active{ transform: translateY(0); }

.btn-primary{
  color: #fff;
  border-color: rgba(37,99,235,0.35);
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(99,102,241,1));
  box-shadow: 0 18px 40px rgba(37,99,235,0.20);
}

.btn-primary:hover{
  box-shadow: 0 22px 55px rgba(37,99,235,0.26);
}

.btn-secondary{
  background: rgba(255,255,255,0.65);
}

.btn-sm{
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 850;
}

/* Badges */
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,0.16);
  background: rgba(37,99,235,0.06);
  color: var(--secondary);
  font-weight: 800;
}

.badge-accent{
  border-color: rgba(251,191,36,0.40);
  background: rgba(251,191,36,0.22);
}

/* ---------------------------
   LAYOUT / TYPO
---------------------------- */
.section{ padding: 64px 0; }
.section-tight{ padding: 44px 0; }

.grid{ display:grid; gap: 18px; }

@media (min-width: 980px){
  .grid-2{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
  .grid-4{ grid-template-columns: repeat(4, 1fr); }
  .grid-hero{ grid-template-columns: 1.15fr 0.85fr; align-items: stretch; }
}

.section-title{
  font-size: var(--h2);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--secondary);
}

.lead{
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Section head helper */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(15,23,42,0.03);
  font-weight: 900;
  color: var(--secondary);
}

.kdot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(37,99,235,0.12);
}

.divider-soft{
  height: 1px;
  background: rgba(15,23,42,0.10);
  margin: 16px 0;
}

/* ---------------------------
   CARD SYSTEM (Premium clean)
---------------------------- */
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card:hover{
  border-color: rgba(37,99,235,0.18);
}




/* ---------------------------
   HERO 
---------------------------- */
.hero-shell{
  position: relative;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.86);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(2,6,23,0.08);
}

.hero-inner{ padding: 34px; position: relative; z-index: 2; }
.hero-left{ max-width: 62ch; }

.hero-kicker{
  display: inline-flex;
  font-weight: 900;
  color: var(--secondary);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.16);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-title{
  margin: 16px 0 10px;
  font-size: var(--h1);
  line-height: 1.05;
}

.hero-lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-usps{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  color: var(--secondary);
  font-weight: 750;
}

.hero-usps li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.08);
}

.hero-usps .tick{
  display:inline-grid;
  place-items:center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(37,99,235,0.12);
  color: var(--primary);
  font-weight: 900;
  flex: 0 0 auto;
}

.hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; }

.hero-note{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  align-items:center;
  color: var(--muted);
  font-weight: 800;
}

.hero-note .star{
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(251,191,36,0.22);
  border: 1px solid rgba(251,191,36,0.35);
  color: var(--secondary);
}

/* right visual */
.hero-right{ display:flex; flex-direction: column; gap: 12px; }

.hero-visual{
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(247,248,251,0.90);
  border-radius: 22px;
  padding: 16px;
  min-height: 240px;
  display:grid;
  gap: 12px;
  align-content: start;
}

.v-row{ display:flex; gap: 10px; }
.v-bar{ height: 12px; border-radius: 999px; background: rgba(37,99,235,0.20); }

.v-card{
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.08);
  display:grid;
  gap: 10px;
}

.v-line{ height: 10px; border-radius: 999px; background: rgba(15,23,42,0.10); }
.w90{ width: 90%; } .w70{ width: 70%; } .w60{ width: 60%; } .w45{ width: 45%; } .w40{ width: 40%; }

.v-chip{
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.16);
  font-weight: 900;
  color: var(--secondary);
}

.hero-badge{
  display:flex;
  gap: 10px;
  align-items:center;
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.80);
  color: var(--secondary);
  font-weight: 900;
}

.badge-icon{
  width: 32px;
  height: 32px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(37,99,235,0.14);
  color: var(--primary);
}

.hero{
  padding: 64px 0;
  background: linear-gradient(180deg, #eef5ff 0%, #f7f9ff 60%, #ffffff 100%);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy{ max-width: 58ch; }

.hero-pill{
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-title{
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--secondary);
  font-weight: 900;
}

.hero-lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.hero-bullets li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--secondary);
  font-weight: 650;
}

.hero-check{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.15);
  color: #16a34a;
  font-weight: 900;
  flex: 0 0 22px;
  margin-top: 2px;
}

.hero-cta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-arrow{ margin-left: 10px; }

.hero-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.hero-img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.hero-img--placeholder{
  height: 420px;
  background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(15,23,42,0.06));
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
}

.hero-card{
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 18px 40px rgba(2,6,23,0.18);
  backdrop-filter: blur(10px);
}

.hero-card-title{
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-card-text{
  color: var(--secondary);
  font-weight: 650;
}


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


/* blobs softer */
.blob{
  position:absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  z-index: 1;
  animation: floaty 12s ease-in-out infinite;
}
.blob-a{ left: -180px; top: -190px; background: rgba(37,99,235,0.75); }
.blob-b{ right: -210px; top: 10px; background: rgba(251,191,36,0.85); animation-duration: 14s; }

@keyframes floaty{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,14px,0) scale(1.02); }
}

/* Trustbar */
.trustbar{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-sm);
}

.trust-item{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.08);
  color: var(--secondary);
  font-weight: 900;
}

.trust-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.10);
}


/* =========================
   Services 
   ========================= */

.section-center{
  text-align: center;
  max-width: 72ch;
  margin: 0 auto 34px;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}

/* Cards grid */
.svc-grid{
  margin-top: 26px;
}

/* Card base */
.svc-card{
  --svc: #2563eb;
  --svc-soft: rgba(37,99,235,0.10);
  --svc-border: rgba(37,99,235,0.30);

  position: relative;
  border-radius: 26px;
  padding: 28px 26px;
  background: #fff;
  border: 2px solid var(--svc-border);
  box-shadow: 0 18px 50px rgba(2,6,23,0.08);

  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}

.svc-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(2,6,23,0.10);
}

/* Color variants */
.svc-card:nth-child(2){
  --svc: #16a34a;
  --svc-soft: rgba(22,163,74,0.10);
  --svc-border: rgba(22,163,74,0.30);
}
.svc-card:nth-child(3){
  --svc: #7c3aed;
  --svc-soft: rgba(124,58,237,0.10);
  --svc-border: rgba(124,58,237,0.30);
}

/* Icon tile */
.svc-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--svc-soft);
  border: 1px solid var(--svc-border);
  color: var(--svc);
  font-size: 22px;
  margin-bottom: 18px;
}

/* Text */
.svc-title{
  margin: 0;
  color: var(--secondary);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.25;
}

.svc-label{
  color: var(--svc);
  font-weight: 800;
  margin: 6px 0 16px;
}

.svc-text{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
  opacity: 0.92;
}

/* Features */
.svc-features{
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

.svc-features li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.6;
}

.svc-check{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--svc-border);
  color: var(--svc);
  font-weight: 900;
  flex: 0 0 22px;
  margin-top: 2px;
}

/* CTA button */
.svc-cta{
  margin-top: auto;
}

.svc-btn{
  display: block;
  text-align: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 2px solid var(--svc-border);
  color: var(--svc);
  font-weight: 900;
  text-decoration: none;
  background: #fff;
  transition: transform .18s ease, background-color .18s ease;
}

.svc-btn:hover{
  background: var(--svc-soft);
  transform: translateY(-1px);
}


/* =========================
   Benefits
   ========================= */

.benefits-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
}

.benefits-copy .pill{
  margin-bottom: 14px;
}

.benefits-items{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px 24px;
}

.benefit{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}

.benefit-ic{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.18);
  color: var(--primary);
}

.benefit-title{
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 6px;
}

.benefit-text{
  color: var(--muted);
  line-height: 1.65;
  font-weight: 350;
}

/* media */
.benefits-media{
  position: relative;
  border-radius: 22px;
}

.benefits-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(2,6,23,0.12);
}

.benefits-img--placeholder{
  height: 420px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(15,23,42,0.06));
  border: 1px solid rgba(15,23,42,0.10);
}

/* overlay benefits-stats */
.benefits-stat{
  position: absolute;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(2,6,23,0.14);
  backdrop-filter: blur(10px);
  width: 240px;
}

.benefits-stat--top{
  top: -14px;
  right: -14px;
}

.benefits-stat--bottom{
  left: -14px;
  bottom: -14px;
  background: rgba(37,99,235,1);
  border-color: rgba(37,99,235,0.65);
  color: #fff;
  width: 260px;
}

.stat-kicker{
  font-weight: 900;
  margin-bottom: 10px;
}

.stat-kicker--green{ color: #16a34a; }
.stat-kicker--blue{ color: rgba(255,255,255,0.92); }

.stat-value{
  font-weight: 950;
  color: var(--secondary);
  font-size: 22px;
  margin-bottom: 4px;
}

.stat-note{
  color: rgba(15,23,42,0.60);
  font-weight: 700;
}

.stat-row{
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}

.stat-big{
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.stat-suffix{
  font-weight: 850;
  opacity: 0.92;
}

.stat-note--light{
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

/* responsive */
@media (max-width: 1100px){
  .benefits-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .benefits-items{ grid-template-columns: 1fr; }
  .benefits-stat--top, .benefits-stat--bottom{
    position: static;
    width: auto;
    margin-top: 14px;
  }
  .benefits-stat--bottom{
    background: rgba(37,99,235,1);
  }
}


/* ---------------------------
   STATS
---------------------------- */
.stats-grid{
  display:grid;
  gap: 12px;
}
@media(min-width: 860px){
  .stats-grid{ grid-template-columns: repeat(4, 1fr); }
}
.statbox{
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: var(--shadow-sm);
}

.statbox .value{
  font-family: Outfit, system-ui, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--secondary);
}

.statbox .label{
  color: var(--muted);
  margin-top: 6px;
  font-weight: 800;
}

.value {
  display: flex;
  flex-direction: column; /* stapelt Zahl + Suffix */
  line-height: 1;
}

.value-suffix {
  margin-top: 4px;        /* das ist deine “Leerzeile” */
  font-size: 0.75em;      /* optional kleiner */
  line-height: 1;
}


/* =========================
   Steps
   ========================= */

.steps-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.step-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 18px 50px rgba(2,6,23,0.08);
  min-height: 100%;
}

/* connector line (between cards) */
.step-card:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 28px;
  height: 2px;
  background: rgba(37,99,235,0.18);
  transform: translateY(-50%);
}

/* number top-left */
.step-no{
  color: rgba(37,99,235,0.25);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

/* icon square */
.step-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.22);
  color: var(--primary);
  margin-bottom: 18px;
}

.step-title{
  margin: 0 0 12px;
  color: var(--secondary);
  font-weight: 900;
  font-size: 20px;
}

.step-text{
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
  opacity: 0.92;
}

/* responsive */
@media (max-width: 1100px){
  .steps-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-card:not(:last-child)::after{ display: none; }
}
@media (max-width: 640px){
  .steps-grid{ grid-template-columns: 1fr; }
}

/* =========================
   CONTACT 
   ========================= */

:root{
  --om-text: #0f172a;
  --om-muted: rgba(15, 23, 42, 0.70);
  --om-border: rgba(15, 23, 42, 0.12);
  --om-border-strong: rgba(15, 23, 42, 0.16);
  --om-bg: #ffffff;
  --om-surface: #ffffff;
  --om-soft: #f6f8ff;
  --om-primary: #2563eb;
  --om-primary-strong: #1e40af;
  --om-ring: rgba(37, 99, 235, 0.20);
  --om-radius: 20px;
  --om-radius-sm: 14px;
  --om-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

/* Section spacing */
.om-contact{
  padding: 64px 0;
  background: var(--om-bg);
  color: var(--om-text);
}

.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* GRID */
.om-contact__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* LEFT */
.om-contact__left{
  padding-top: 6px;
}

.om-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #1e40af;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
}

.om-pill .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--om-primary);
  display: inline-block;
}

.om-contact__headline{
  margin: 18px 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.om-contact__intro{
  margin: 0 0 26px;
  color: var(--om-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}

.om-contact__items{
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.om-contact-item{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.om-contact-item__icon{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e6edff;
  border: 1px solid rgba(37, 99, 235, 0.10);
  font-size: 22px;
}

.om-contact-item__body{
  padding-top: 2px;
}

.om-contact-item__title{
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.om-contact-item__link{
  color: var(--om-primary);
  font-weight: 700;
  text-decoration: none;
}

.om-contact-item__link:hover{
  color: var(--om-primary-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.om-contact-item__sub{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.55);
}

/* RIGHT CARD */
.om-contact__right{
  background: var(--om-surface);
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius);
  box-shadow: var(--om-shadow);
  padding: 28px;
}

.om-form__title{
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 800;
  color: var(--om-text);
}

/* FORM GRID */
.om-form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.om-form__group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.om-form__group--full{
  grid-column: 1 / -1;
}

.om-form label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.80);
}

.om-req{
  color: rgba(15, 23, 42, 0.55);
  font-weight: 800;
}

/* Inputs */
.om-form__input,
.om-form__textarea,
.om-form__select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--om-border-strong);
  background: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
}

.om-form__textarea{
  resize: vertical;
  min-height: 120px;
}

.om-form__input::placeholder,
.om-form__textarea::placeholder{
  color: rgba(15, 23, 42, 0.38);
}

.om-form__input:focus,
.om-form__textarea:focus,
.om-form__select:focus{
  border-color: var(--om-primary);
  box-shadow: 0 0 0 4px var(--om-ring);
}

/* Checkbox legal */
.om-form__legal{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  padding-top: 8px;
}

.om-form__legal input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--om-primary);
}

.om-form__legal label{
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.65);
  line-height: 1.45;
}

/* Button */
.om-form__submit{
  margin-top: 18px;
}

.om-form__submit .btn-primary{
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 16px;
  background: var(--om-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform .05s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.om-form__submit .btn-primary:hover{
  background: var(--om-primary-strong);
}

.om-form__submit .btn-primary:active{
  transform: translateY(1px);
}

/* =========================
   Responsive Contact
   ========================= */

@media (max-width: 1024px){
  .om-contact__grid{
    gap: 44px;
  }
}

@media (max-width: 860px){
  .om-contact{
    padding: 48px 0;
  }

  .om-contact__grid{
    grid-template-columns: 1fr;
  }

  .om-contact__right{
    padding: 22px;
  }
}

@media (max-width: 560px){
  .container{
    width: min(1120px, calc(100% - 28px));
  }

  .om-form__row{
    grid-template-columns: 1fr;
  }

  .om-form__group--full{
    grid-column: auto;
  }

  .om-contact-item{
    grid-template-columns: 48px 1fr;
  }
}


/* =========================
   CMS NAV + FOOTER (Settings Links)
   ========================= */

/* Desktop Nav: Links etwas kompakter + gleichmäßig */
.nav-actions .btn{
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
}

/* Mobile menu: volle Breite für Buttons */
.mobile-menu-inner .btn{
  width: 100%;
  justify-content: center;
}

/* ---------------------------
   FOOTER (CMS Links)
---------------------------- */
.footer{
  margin-top: 56px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(10px);
}

.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 950;
  color: var(--secondary);
}

/* rechter Block: Links + Copyright */
.footer-copy{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  align-items:center;
  justify-content:flex-end;
  color: var(--muted);
  font-weight: 750;
}

/* Footer-Link Style (premium text-link) */
.footer-copy a{
  color: var(--muted);
  font-weight: 850;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.footer-copy a:hover{
  color: var(--secondary);
  background: rgba(15,23,42,0.03);
  border-color: rgba(15,23,42,0.08);
  transform: translateY(-1px);
}

.footer-copy a:active{
  transform: translateY(0);
}

.footer-year{ opacity:.7; }


/* Responsive Footer */
@media (max-width: 820px){
  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copy{
    justify-content: flex-start;
  }
}

/* ---------------------------
   REVEAL (keine Funktion kaputt)
---------------------------- */
.reveal{
  transition: opacity .6s ease, transform .6s ease;
}
.reveal[data-reveal="1"]{
  opacity: 0;
  transform: translateY(10px);
}
.reveal[data-reveal="1"].in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal[data-reveal="1"]{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------------------------
   RESPONSIVE
---------------------------- */

@media (max-width: 640px){
  /* 1) Nur horizontal begrenzen – kein seitlicher Overflow */
  section.hero,
  .hero{
    overflow-x: hidden;
    overflow-y: visible;
  }

  /* 2) Grid/Flex-Kinder dürfen schrumpfen (wichtig!) */
  .hero-grid > *,
  .hero-shell > *,
  .hero-inner,
  .hero-copy,
  .hero-left,
  .hero-media{
    min-width: 0;
  }

  /* 3) Text darf immer umbrechen statt abgeschnitten zu werden */
  .hero-title,
  .hero-lead,
  .hero-kicker,
  .hero-pill,
  .hero-usps li,
  .hero-bullets li,
  .hero-note{
    overflow-wrap: anywhere;  /* bricht auch lange Wörter/URLs */
    word-break: break-word;
  }

  /* 4) Falls irgendwo nowrap gesetzt ist (Pills/Badges sind oft culprit) */
  .hero-kicker,
  .hero-pill{
    white-space: normal;
  }
}

@media (max-width: 640px){
  .container{ padding: 16px; }
  .nav-inner{ padding: 12px 16px; }
  #desktopNav{ display:none; }
  #menuBtn{ display:inline-flex; }
  .footer-inner{ flex-direction: column; align-items: flex-start; }
  .hero-inner{ padding: 18px; }
  .grid-hero{ grid-template-columns: 1fr !important; }
    .hero-copy{
    margin: 0 auto;
    text-align: center;
    max-width: 520px;
  }
  .hero-pill{
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bullets{
    justify-items: center;
  }
  .hero-bullets li{
    justify-content: center;
    text-align: left;
  }
  .hero-cta{
    justify-content: center;
  }
  .hero-cta .btn{
    width: 100%;
  }
  .hero-cta .btn{ width: 100%; }

  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr !important; }
 .hide-mobile{ display: none !important; }

 
}


@media (min-width: 641px) and (max-width: 980px){
  .grid-3{ grid-template-columns: repeat(2, 1fr) !important; }
  .grid-4{ grid-template-columns: repeat(2, 1fr) !important; }
}

/* --- Services v2 (premium, clean) --- */
.service2{
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.90);
  box-shadow: 0 14px 44px rgba(2,6,23,0.08);
  padding: 20px;
  display:flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service2:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(2,6,23,0.10);
  border-color: rgba(37,99,235,0.22);
}

.service2.is-accent{
  border-color: rgba(37,99,235,0.28);
  background: linear-gradient(180deg, rgba(37,99,235,0.06), rgba(255,255,255,0.92));
}

.service2-top{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--secondary);
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.08);
}

.chip-accent{
  background: rgba(37,99,235,0.10);
  border-color: rgba(37,99,235,0.18);
}

.service2-title{
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.service2-text{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.service2-features{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display:grid;
  gap: 10px;
}

.service2-features li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.08);
  color: var(--secondary);
  font-weight: 750;
}

.service2-features .tick{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display:inline-grid;
  place-items:center;
  background: rgba(37,99,235,0.12);
  color: var(--primary);
  font-weight: 900;
  flex: 0 0 auto;
}

.service2-cta{
  margin-top: auto;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

