/* ═══════════════════════════════════════════════════════════════
   GaLaBau Software Theme – main.css  v3.0.0
   mexXsoft GmbH · galabau-software.de
   Design: Refined Luxury B2B · Nunito 900 + DM Sans
   ═══════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS IMPORT ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700;1,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  /* Brand */
  --blue:       #1B4F9B;
  --blue-d:     #0d2f60;
  --blue-m:     #2563eb;
  --blue-l:     #60a5fa;
  --blue-xl:    #eff6ff;
  --blue-xx:    #f8fbff;

  --green:      #16a34a;
  --green-d:    #166534;
  --green-l:    #dcfce7;
  --green-xl:   #f0fdf4;

  /* Neutrals */
  --white:      #ffffff;
  --off:        #f9fafb;
  --ink:        #0a1628;
  --ink-2:      #1e3a5f;
  --mid:        #4b6b8a;
  --lite:       #8fa8c0;
  --border:     #e2ecf5;
  --border-2:   #cddcec;

  /* Accents */
  --amber:      #f59e0b;
  --sky:        #dbeafe;
  --sky-2:      #eff6ff;

  /* Type */
  --font-head:  'Nunito', system-ui, sans-serif;
  --font-body:  'DM Sans', system-ui, sans-serif;

  /* Radius */
  --r-sm:       8px;
  --r:          14px;
  --r-md:       20px;
  --r-lg:       28px;
  --r-xl:       40px;

  /* Shadows */
  --sh-xs:  0 1px 3px rgba(10,22,40,.06), 0 1px 2px rgba(10,22,40,.04);
  --sh-sm:  0 2px 8px rgba(10,22,40,.08), 0 1px 3px rgba(10,22,40,.05);
  --sh:     0 4px 16px rgba(27,79,155,.10), 0 2px 6px rgba(27,79,155,.06);
  --sh-md:  0 8px 32px rgba(27,79,155,.12), 0 3px 10px rgba(27,79,155,.07);
  --sh-lg:  0 16px 48px rgba(27,79,155,.14), 0 6px 18px rgba(27,79,155,.08);
  --sh-xl:  0 24px 80px rgba(27,79,155,.18), 0 10px 28px rgba(27,79,155,.10);

  /* Nav + Ticker heights */
  --ticker-h:   44px;
  --nav-h:      72px;

  /* Easing */
  --ease:       cubic-bezier(.25, .46, .45, .94);
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
  --ease-spring:cubic-bezier(.34, 1.56, .64, 1);
}

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  letter-spacing: -.025em;
  line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

/* ── LAYOUT ───────────────────────────────────────────────────── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section--white { background: var(--white); }
.section--off   { background: var(--off); }
.section--blue  { background: var(--blue-d); }

/* ── REVEAL ANIMATION ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── TYPOGRAPHY UTILITIES ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue);
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.eyebrow--green { color: var(--green); }
.eyebrow--white { color: rgba(255,255,255,.7); }

.h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 1rem;
}
.h2--white { color: #fff; }
.lede {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 540px;
  font-weight: 300;
}
.lede--wide { max-width: 720px; }

.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-header--center .lede { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.85rem;
  border-radius: var(--r);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all .2s var(--ease-spring);
  text-decoration: none;
}
.btn--lg  { padding: 1rem 2.25rem; font-size: 16px; }
.btn--sm  { padding: .6rem 1.25rem; font-size: 13.5px; }
.btn--full{ width: 100%; justify-content: center; }

.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(22,163,74,.25);
}
.btn--green:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,163,74,.32);
}

.btn--blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(27,79,155,.22);
}
.btn--blue:hover {
  background: var(--blue-m);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,79,155,.30);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border-2);
}
.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-xl);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

.btn--sky {
  background: var(--sky-2);
  color: var(--blue);
  border: 2px solid var(--sky);
}
.btn--sky:hover {
  background: var(--sky);
  border-color: var(--blue-l);
}

.btn--ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
}

.btn--white-green {
  background: #fff;
  color: var(--green);
  box-shadow: var(--sh-sm);
}
.btn--white-green:hover { background: var(--green-xl); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════════════
   NEWS TICKER
════════════════════════════════════════════════════════════════ */
.ticker-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--ticker-h);
  background: var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1.5rem 0 1.25rem;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  height: 100%;
  background: var(--green);
  white-space: nowrap;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  padding-right: 2rem;
}
.ticker-dot {
  width: 7px; height: 7px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  animation: tdot 1.8s ease-in-out infinite;
}
@keyframes tdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.3)} }

.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 64px, black calc(100% - 64px), transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll var(--ticker-speed, 40s) linear infinite;
  align-items: center;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.ticker-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: 0 1.75rem;
  white-space: nowrap;
}
.ticker-ico  { font-size: .9rem; }
.ticker-text {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  font-family: var(--font-body);
  transition: color .15s;
}
a.ticker-text:hover { color: #fff; }
.ticker-cat {
  font-size: 10px;
  font-weight: 700;
  background: rgba(22,163,74,.25);
  color: #86efac;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-head);
}
.ticker-sep { color: rgba(255,255,255,.15); font-size: 1.1rem; }

/* ════════════════════════════════════════════════════════════════
   NAVIGATION – Premium Glassmorphism
════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: var(--ticker-h);
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(226,236,245,.6);
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 32px rgba(10,22,40,.08), 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo  { height: 36px; width: auto; }
.nav-domain {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--green-d);
  background: var(--green-l);
  padding: .22rem .7rem;
  border-radius: var(--r-sm);
  letter-spacing: .025em;
}

/* Desktop menu */
.nav-desktop { flex: 1; margin-left: .25rem; }
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.menu-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .45rem .9rem;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  font-family: var(--font-head);
  white-space: nowrap;
  transition: color .12s, background .12s;
  cursor: pointer;
  text-decoration: none;
}
.nav-link:hover,
.menu-item.current-menu-item .nav-link {
  color: var(--blue);
  background: var(--blue-xl);
}
.nav-arrow {
  width: 14px; height: 14px;
  opacity: .45;
  transition: transform .2s var(--ease);
  flex-shrink: 0;
}
.menu-item:hover .nav-arrow { transform: rotate(180deg); opacity: .8; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  padding: .5rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.menu-item:hover .dropdown-menu,
.menu-item:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  padding: .5rem .9rem;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mid);
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  transition: background .1s, color .1s;
  text-decoration: none;
  cursor: pointer;
  gap: .5rem;
}
.dropdown-link:hover { background: var(--blue-xl); color: var(--blue); }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-left: auto;
  flex-shrink: 0;
}
.btn-nav {
  padding: .5rem 1.15rem;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-head);
  white-space: nowrap;
  transition: all .15s;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn-nav--outline {
  color: var(--mid);
  border-color: var(--border-2);
  background: transparent;
}
.btn-nav--outline:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-xl);
}
.btn-nav--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 10px rgba(22,163,74,.2);
}
.btn-nav--green:hover {
  background: var(--green-d);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(22,163,74,.28);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 0;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .15s, background .15s;
}
.nav-hamburger:hover { border-color: var(--blue); background: var(--blue-xl); }
.nav-hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s;
  pointer-events: none;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  margin-top: calc(var(--ticker-h) + var(--nav-h));
  background: #fff;
  z-index: 850;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.mobile-nav-menu { list-style: none; }
.mobile-nav-menu .menu-item { border-bottom: 1px solid var(--border); }
.mobile-nav-menu .menu-item:last-child { border-bottom: none; }
.mobile-nav-menu > .menu-item > a {
  display: flex;
  align-items: center;
  padding: .95rem .25rem;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-head);
  text-decoration: none;
}
.mobile-nav-menu .sub-menu,
.mobile-nav-menu .dropdown-menu {
  list-style: none;
  padding: .25rem .25rem .6rem 1rem;
  margin: 0 0 .5rem;
  background: var(--off);
  border-radius: var(--r-sm);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s var(--ease);
}
.mobile-nav-menu .sub-menu .menu-item { border-bottom: 1px solid rgba(0,0,0,.05); }
.mobile-nav-menu .sub-menu .menu-item:last-child { border: none; }
.mobile-nav-menu .sub-menu a,
.mobile-nav-menu .dropdown-link {
  display: block;
  padding: .55rem .75rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  font-family: var(--font-head);
  text-decoration: none;
}
.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.5rem;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-head);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-full.btn-green  { background: var(--green); color: #fff; }
.btn-full.btn-outline{ background: var(--sky-2); color: var(--blue); border: 2px solid var(--sky); }
.mobile-contact { text-align: center; font-size: 14px; font-weight: 700; color: var(--mid); font-family: var(--font-head); padding: .5rem 0; }
.mobile-contact a { color: var(--blue); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 840;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.mobile-overlay.open { opacity: 1; }

/* ════════════════════════════════════════════════════════════════
   HERO – Premium Split Layout
════════════════════════════════════════════════════════════════ */
.hs {
  position: relative;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 90vh;
  padding: 5rem 0 4rem;
}

/* Gradient mesh background */
.hs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(27,79,155,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(22,163,74,.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 85% 85%, rgba(96,165,250,.06) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle dot grid */
.hs::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27,79,155,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 100% at 60% 50%, black 0%, transparent 80%);
}

/* Optional photo layer */
.hs__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

.hs__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* LEFT */
.hs__left { display: flex; flex-direction: column; }

.hs__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green-l);
  border: 1.5px solid rgba(22,163,74,.2);
  color: var(--green-d);
  padding: .38rem 1rem;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 1.75rem;
  font-family: var(--font-head);
  width: fit-content;
  letter-spacing: .01em;
}
.hs__badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: hsdot 2.2s ease-in-out infinite;
}
@keyframes hsdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

.hs__h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.07;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hs__h1 em   { font-style: italic; color: var(--blue); }
.hs__green   { color: var(--green); }

.hs__bullets {
  list-style: none;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.hs__bullets li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: 15px;
  color: var(--mid);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
}
.hs__bullets li::before {
  content: '';
  display: flex;
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  background: var(--green-l);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l3.5 3.5 6.5-7' stroke='%2316a34a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.hs__btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  align-items: center;
}

.hs__trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hs__trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 12.5px;
  color: var(--mid);
  font-family: var(--font-body);
  font-weight: 400;
}
.hs__trust-item strong { color: var(--ink); font-weight: 600; }
.hs__stars { color: var(--amber); font-size: 13px; letter-spacing: .5px; }
.hs__trust-sep { width: 1px; height: 16px; background: var(--border-2); }

/* RIGHT */
.hs__right { position: relative; }

.hs__screen {
  position: relative;
  z-index: 2;
}
.hs__screen-img {
  width: 100%;
  display: block;
  border-radius: var(--r-md);
  box-shadow:
    0 0 0 1px rgba(27,79,155,.08),
    0 8px 24px rgba(27,79,155,.10),
    0 24px 64px rgba(27,79,155,.14),
    0 56px 120px rgba(10,22,40,.10);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg) scale(.98);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.hs__right:hover .hs__screen-img {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) scale(1);
  box-shadow:
    0 0 0 1px rgba(27,79,155,.10),
    0 12px 32px rgba(27,79,155,.12),
    0 32px 80px rgba(27,79,155,.16);
}

/* Screenshot placeholder (wenn kein Bild) */
.hs__screen-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--blue-xl) 0%, #dbeafe 50%, var(--green-l) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  border: 2px dashed var(--border-2);
  box-shadow: var(--sh-lg);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg) scale(.98);
  padding: 2rem;
  text-align: center;
}
.hs__screen-placeholder-icon {
  font-size: 3rem;
  filter: grayscale(0);
}
.hs__screen-placeholder-label {
  color: var(--mid);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
}

/* Floating Badges */
.hero-float {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(27,79,155,.1);
  border-radius: var(--r-md);
  padding: .85rem 1.15rem;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: .8rem;
  z-index: 3;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .3s var(--ease-spring);
}
.hero-float:hover { transform: translateY(-4px) scale(1.03) !important; }
.hero-float--1 { bottom: 2rem; left: -2rem; animation: floatA 4s ease-in-out infinite; }
.hero-float--2 { top: 2.5rem; right: -1.5rem; animation: floatA 4s ease-in-out .8s infinite; }
.hero-float--3 { bottom: 5rem; right: -2rem; animation: floatA 4s ease-in-out 1.5s infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-float__ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.hero-float__lbl { font-size: 10.5px; color: var(--lite); font-weight: 600; font-family: var(--font-head); }
.hero-float__val { font-size: 13.5px; font-weight: 800; color: var(--ink); font-family: var(--font-head); }

/* Scroll hint */
.hs__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: 10.5px;
  color: var(--lite);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  animation: hscroll 2.2s ease-in-out infinite;
}
@keyframes hscroll { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(5px)} }
.scroll-mouse { width: 22px; height: 34px; border: 2px solid var(--border-2); border-radius: 11px; display:flex; justify-content:center; padding-top:5px; }
.scroll-wheel { width: 4px; height: 7px; background: var(--blue-l); border-radius: 2px; animation: swheel 2.2s ease-in-out infinite; }
@keyframes swheel { 0%,100%{transform:translateY(0);opacity:1} 80%{transform:translateY(10px);opacity:0} }

/* ════════════════════════════════════════════════════════════════
   TRUST STRIP – Premium Edition
════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 2rem;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ts-item { display: flex; align-items: center; justify-content: center; }
.ts-img  { height: 32px; width: auto; filter: grayscale(20%); transition: filter .2s; }
.ts-img:hover { filter: none; }
.ts-sep  { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.ts-item--num { flex-direction: column; align-items: center; gap: .1rem; }
.ts-num {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.03em;
}
.ts-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--lite);
  font-family: var(--font-body);
  text-align: center;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════════
   VERBAND STRIP
════════════════════════════════════════════════════════════════ */
.verband-strip {
  background: var(--green-xl);
  border-top: 1px solid rgba(22,163,74,.15);
  border-bottom: 1px solid rgba(22,163,74,.15);
  padding: 1.1rem 2rem;
}
.verband-strip__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.verband-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid rgba(22,163,74,.2);
  border-radius: 50px;
  padding: .28rem .95rem .28rem .5rem;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-d);
  font-family: var(--font-head);
}
.verband-badge img { height: 26px; width: auto; }
.verband-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--green-d); font-family: var(--font-head); }
.verband-text span  { display: block; font-size: 11.5px; color: var(--mid); font-family: var(--font-body); }
.verband-logos { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.verband-logos img { height: 36px; width: auto; }

/* ════════════════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════════════════ */
.marquee-wrap {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lite);
  margin-bottom: .8rem;
  font-family: var(--font-head);
}
.marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: mroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes mroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: 0 2rem;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mid);
  white-space: nowrap;
  font-family: var(--font-body);
}
.marquee-dot { opacity: .35; font-size: .7rem; }

/* ════════════════════════════════════════════════════════════════
   FEATURE ICON GRID – Premium 6-Column
════════════════════════════════════════════════════════════════ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.ig-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: #fff;
  transition: all .22s var(--ease-out);
  cursor: default;
}
.ig-item:hover {
  border-color: var(--blue-l);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.ig-ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: var(--off);
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: background .2s;
}
.ig-item:hover .ig-ico { background: var(--green-l); border-color: rgba(22,163,74,.2); }
.ig-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-head);
  line-height: 1.35;
}
.ig-text {
  font-size: 12px;
  color: var(--lite);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.45;
}

/* ════════════════════════════════════════════════════════════════
   SPLIT BLOCK – Premium
════════════════════════════════════════════════════════════════ */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.split-block--flip { direction: rtl; }
.split-block--flip > * { direction: ltr; }

.split-block__img {
  overflow: hidden;
  min-height: 440px;
  position: relative;
}
.split-block__img img,
.split-block__img > * {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.split-block:hover .split-block__img img { transform: scale(1.03); }

/* Image placeholder */
.split-block__img-placeholder {
  width: 100%; height: 100%;
  min-height: 440px;
  background: linear-gradient(135deg, var(--blue-xl), var(--sky));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue);
  font-size: 14px;
  padding: 2rem;
  text-align: center;
}
.split-block__img-placeholder span { font-size: 3rem; }

.split-block__text {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-block__text--white { background: #fff; }
.split-block__text--off   { background: var(--off); }
.split-block__text--blue  { background: var(--blue-d); }
.split-block__text--green { background: var(--green); }

/* Check list */
.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li {
  display: flex;
  gap: .85rem;
  padding: .72rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.check-list li.oc { border-bottom-color: rgba(255,255,255,.12); }
.check-list li:last-child { border-bottom: none; }
.check {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
  color: #fff; flex-shrink: 0; margin-top: 2px;
}
.check.green { background: var(--green); }
.check.blue  { background: var(--blue); }
.check.light { background: rgba(255,255,255,.25); }
.check-list li strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: .05rem; font-family: var(--font-head); }
.check-list li.oc strong { color: #fff; }
.check-list li span { font-size: 13px; color: var(--mid); }
.check-list li.oc span { color: rgba(255,255,255,.62); }

.btn-row { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 2rem; }

/* ════════════════════════════════════════════════════════════════
   BENTO GRID
════════════════════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.bento-tile--6 { grid-column: span 6; }
.bento-tile--8 { grid-column: span 8; }
.bento-tile--4 { grid-column: span 4; }

.bento-tile {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  box-shadow: var(--sh-sm);
}
.bento-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s var(--ease-out);
}
.bento-tile:hover img { transform: scale(1.04); }
.bento-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.85) 0%, rgba(10,22,40,.1) 55%, transparent 100%);
}
.bento-tile__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: .25rem .8rem; border-radius: 50px;
  font-family: var(--font-head); letter-spacing: .03em;
}
.bento-tile__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.bento-tile__body h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: .2rem; font-family: var(--font-head); }
.bento-tile__body p  { font-size: 12.5px; color: rgba(255,255,255,.68); font-family: var(--font-body); }

/* Bento image placeholder */
.bento-tile-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, var(--off), var(--sky-2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--mid);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  padding: 1.5rem;
  text-align: center;
  border: 2px dashed var(--border-2);
  border-radius: var(--r-md);
}
.bento-tile-placeholder span { font-size: 2.5rem; }

.bento-card {
  border-radius: var(--r-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.bento-card--blue  { background: var(--blue-d); }
.bento-card--green { background: var(--green); }
.bento-card--white { background: #fff; border: 1px solid var(--border); box-shadow: var(--sh-sm); }
.bento-card__icon  { font-size: 2.5rem; margin-bottom: 1rem; }
.bento-eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #93c5fd; margin-bottom: .5rem; font-family: var(--font-head); display: block; }
.bento-card h3 { font-size: 1.35rem; font-weight: 900; color: #fff; margin-bottom: .65rem; font-family: var(--font-head); }
.bento-card p  { font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.65; margin-bottom: 1.15rem; flex: 1; }
.bento-card--white h3 { color: var(--ink); }
.bento-card--white p  { color: var(--mid); }
.bento-pill {
  font-size: 11.5px;
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: .3rem .85rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  width: fit-content;
}
.btn--white-blue { background: #fff; color: var(--blue); font-family: var(--font-head); box-shadow: var(--sh-sm); }
.btn--white-blue:hover { background: var(--blue-xl); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════════
   STATS – Flach + Premium
════════════════════════════════════════════════════════════════ */
.stats-flat {
  background: var(--blue-d);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.stats-flat::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.stats-flat__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
}
.sf-item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 2rem 1rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.sf-item:hover { background: rgba(255,255,255,.09); }
.sf-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
}
.sf-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════════════
   PREISE
════════════════════════════════════════════════════════════════ */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  position: relative;
  transition: all .25s var(--ease-out);
  box-shadow: var(--sh-xs);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); border-color: var(--border-2); }
.price-card--best { border-color: var(--green); border-width: 2px; box-shadow: var(--sh-md); }
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 4px 18px; border-radius: 50px;
  white-space: nowrap; font-family: var(--font-head);
  box-shadow: 0 4px 12px rgba(22,163,74,.25);
}
.price-card__name {
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--lite); margin-bottom: .5rem; font-family: var(--font-head);
}
.price-card__tag { font-size: 13px; color: var(--mid); margin-bottom: 1.5rem; min-height: 2.8em; font-family: var(--font-body); line-height: 1.5; }
.price-card__box {
  background: var(--off); border-radius: var(--r-md);
  padding: 1.5rem; margin-bottom: 1.5rem; text-align: center;
  border: 1px solid var(--border);
}
.price-card--best .price-card__box { background: var(--green); border-color: transparent; }
.price-card__amt {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 900;
  color: var(--blue); line-height: 1; letter-spacing: -.04em;
}
.price-card--best .price-card__amt { color: #fff; }
.price-card__amt sup { font-size: 1.3rem; font-weight: 700; vertical-align: super; }
.price-card__per { font-size: 12px; color: var(--lite); margin-top: .3rem; font-family: var(--font-body); }
.price-card--best .price-card__per { color: rgba(255,255,255,.65); }
.price-card__extra { font-size: 12px; color: var(--mid); margin-top: .22rem; font-family: var(--font-body); }
.price-card--best .price-card__extra { color: rgba(255,255,255,.7); }
.price-features { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.price-features li {
  font-size: 13.5px; color: var(--mid);
  padding: .5rem 0;
  display: flex; align-items: flex-start; gap: .6rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 900; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.price-features__hi { color: var(--green-d) !important; font-weight: 500 !important; }

.demo-banner {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.demo-banner__ico { font-size: 1.75rem; flex-shrink: 0; }
.demo-banner > div { flex: 1; min-width: 200px; }
.demo-banner strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: .25rem; font-family: var(--font-head); }
.demo-banner span   { font-size: 13.5px; color: var(--mid); font-family: var(--font-body); }

/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════════ */
.google-rating-img { height: 30px; width: auto; margin: .85rem auto 0; filter: grayscale(10%); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: all .22s var(--ease-out);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.testi-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.testi-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.testi-card:hover::after { transform: scaleX(1); }
.testi-card__stars { color: var(--amber); font-size: 15px; letter-spacing: 1.5px; margin-bottom: .9rem; }
.testi-card__quote { font-size: 14px; color: var(--mid); line-height: 1.78; margin-bottom: 1.3rem; font-style: italic; flex: 1; font-family: var(--font-body); }
.testi-card__author { display: flex; align-items: center; gap: .75rem; }
.testi-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0;
  font-family: var(--font-head);
}
.testi-card__name { font-size: 14px; font-weight: 700; color: var(--ink); font-family: var(--font-head); }
.testi-card__role { font-size: 12px; color: var(--lite); font-family: var(--font-body); }

/* ════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item--open { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,79,155,.08); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.5rem;
  cursor: pointer; font-size: 15px; font-weight: 700; color: var(--ink);
  gap: 1rem; font-family: var(--font-head);
  transition: background .12s; user-select: none;
}
.faq-item__q:hover { background: var(--off); }
.faq-item__ico {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--off); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--blue); font-weight: 800;
  transition: all .2s var(--ease); border: 1px solid var(--border);
}
.faq-item--open .faq-item__ico { transform: rotate(180deg); background: var(--blue); color: #fff; border-color: transparent; }
.faq-item__a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 14.5px; color: var(--mid); line-height: 1.78;
  font-family: var(--font-body); font-weight: 400;
}
.faq-item--open .faq-item__a { display: block; }

/* ════════════════════════════════════════════════════════════════
   SUBPAGE HEADER
════════════════════════════════════════════════════════════════ */
.sph {
  background: var(--blue-d);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.sph::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(27,79,155,.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(22,163,74,.15) 0%, transparent 55%);
}
.sph::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.sph-inner { position: relative; z-index: 1; }
.bc {
  display: flex; align-items: center; gap: .5rem;
  font-size: 12.5px; color: rgba(255,255,255,.5);
  margin-bottom: 1rem; font-family: var(--font-body); font-weight: 400;
  flex-wrap: wrap;
}
.bc a { color: rgba(255,255,255,.6); transition: color .12s; cursor: pointer; }
.bc a:hover { color: #fff; }
.sph h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; color: #fff; margin-bottom: .85rem;
  font-family: var(--font-head); letter-spacing: -.03em;
}
.sph p {
  font-size: 1.05rem; color: rgba(255,255,255,.68);
  max-width: 600px; line-height: 1.75; font-family: var(--font-body);
}

/* Feature cards */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: all .22s var(--ease-out);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.card--blue-top::before  { background: var(--blue); }
.card--green-top::before { background: var(--green); }
.card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: var(--border-2); }
.card:hover::before { transform: scaleX(1); }
.card__ico {
  width: 52px; height: 52px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.15rem; flex-shrink: 0;
}
.card__ico--green { background: var(--green-l); border-color: rgba(22,163,74,.2); }
.card h3 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: .45rem; font-family: var(--font-head); }
.card p  { font-size: 13.5px; color: var(--mid); line-height: 1.65; flex: 1; font-family: var(--font-body); }
.card-link { display: inline-flex; align-items: center; gap: .3rem; margin-top: .9rem; font-size: 13px; color: var(--blue); font-weight: 700; font-family: var(--font-head); }
.card-link--green { color: var(--green); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 50px; padding: .45rem 1rem;
  font-size: 13px; font-weight: 600; color: var(--mid);
  transition: all .12s; cursor: default; font-family: var(--font-body);
}
.chip:hover { border-color: var(--green); background: var(--green-l); color: var(--green-d); }

/* ════════════════════════════════════════════════════════════════
   YT GRID
════════════════════════════════════════════════════════════════ */
.yt-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.yt-btn { display: inline-flex; align-items: center; gap: .5rem; background: #FF0000; color: #fff; padding: .5rem 1.15rem; border-radius: var(--r-sm); font-size: 13.5px; font-weight: 700; font-family: var(--font-head); transition: background .12s; }
.yt-btn:hover { background: #cc0000; }
.yt-grid { display: grid; grid-template-columns: 2.1fr 1fr 1fr; gap: 1rem; }
.ytc { border-radius: var(--r-md); overflow: hidden; display: block; cursor: pointer; position: relative; background: #000; box-shadow: var(--sh-sm); }
.ytc .yi { width: 100%; object-fit: cover; display: block; transition: transform .35s; opacity: .88; }
.ytc:hover .yi { transform: scale(1.05); opacity: .72; }
.ytc.feat .yi { height: 265px; }
.ytc.sm .yi   { height: 130px; }
.yt-ov { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.yt-play { width: 52px; height: 52px; background: rgba(255,0,0,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 17px; padding-left: 4px; box-shadow: 0 4px 22px rgba(255,0,0,.35); transition: transform .18s; }
.ytc:hover .yt-play { transform: scale(1.1); }
.ytc.sm .yt-play { width: 38px; height: 38px; font-size: 14px; }
.yt-cap { padding: .95rem 1.1rem; background: #fff; }
.yt-new { display: inline-block; background: var(--green); color: #fff; font-size: 9.5px; font-weight: 800; padding: 2px 7px; border-radius: 4px; margin-bottom: .35rem; text-transform: uppercase; font-family: var(--font-head); }
.yt-cap h4 { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: .2rem; font-family: var(--font-head); }
.yt-cap p  { font-size: 12px; color: var(--lite); font-family: var(--font-body); }

/* ════════════════════════════════════════════════════════════════
   FOOTER CTA
════════════════════════════════════════════════════════════════ */
.footer-cta {
  background: linear-gradient(135deg, var(--green-d) 0%, var(--blue-d) 50%, var(--blue) 100%);
  padding: 5.5rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.footer-cta h2 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; color: #fff; margin-bottom: .85rem; position: relative; z-index: 1; font-family: var(--font-head); }
.footer-cta p  { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.72; position: relative; z-index: 1; font-family: var(--font-body); }
.footer-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* Support Strip */
.support-strip { background: var(--off); border-top: 1px solid var(--border); padding: 1.5rem 2rem; }
.support-strip .container { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.support-strip__label { font-size: 13px; color: var(--mid); font-family: var(--font-body); }
.support-strip__btns { display: flex; gap: .65rem; flex-wrap: wrap; }
.supp-btn {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: .5rem 1rem; font-size: 13px; font-weight: 600; color: var(--mid);
  display: inline-flex; align-items: center; gap: .5rem; transition: all .12s; font-family: var(--font-body);
}
.supp-btn img { height: 16px; width: auto; }
.supp-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-xl); }

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--ink); padding: 4.5rem 0 0; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-logo { height: 34px; filter: brightness(0) invert(1) opacity(.8); margin-bottom: 1.1rem; }
.footer-brand__desc { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.72; max-width: 255px; margin-bottom: 1.5rem; font-family: var(--font-body); }
.footer-social { display: flex; gap: .45rem; flex-wrap: wrap; }
.footer-social a { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.42); padding: .38rem .78rem; border-radius: var(--r-sm); font-size: 12px; font-weight: 600; transition: all .12s; font-family: var(--font-head); }
.footer-social a:hover { background: rgba(255,255,255,.12); color: #fff; }
.footer-verband { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: 1.25rem; }
.footer-verband img { height: 28px; filter: brightness(0) invert(1) opacity(.35); }
.footer-nav-col h5 { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 1rem; font-family: var(--font-head); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.38); transition: color .1s; font-family: var(--font-body); cursor: pointer; }
.footer-links a:hover { color: rgba(255,255,255,.82); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.28);
  flex-wrap: wrap; gap: .75rem; font-family: var(--font-body);
}
.footer-bottom__links { display: flex; gap: 1.5rem; }
.footer-bottom__links a { color: rgba(255,255,255,.28); transition: color .1s; cursor: pointer; }
.footer-bottom__links a:hover { color: rgba(255,255,255,.75); }

/* Contact form */
.fg { margin-bottom: .9rem; }
.fg label { display: block; font-size: 13px; font-weight: 600; color: var(--mid); margin-bottom: .38rem; font-family: var(--font-head); }
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--off); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: .78rem 1rem; font-size: 14px; color: var(--ink);
  font-family: var(--font-body); transition: all .15s; outline: none; appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(27,79,155,.08);
}
.fg textarea { min-height: 110px; resize: vertical; }
.form-msg--ok  { background: var(--green-l); color: var(--green-d); border: 1px solid rgba(22,163,74,.25); border-radius: var(--r-sm); padding: .85rem 1rem; font-family: var(--font-body); font-weight: 600; }
.form-msg--err { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; border-radius: var(--r-sm); padding: .85rem 1rem; }

/* Back to top */
.back-to-top-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800;
  width: 44px; height: 44px;
  background: var(--green); color: #fff;
  border: none; border-radius: var(--r); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
  opacity: 0; transform: translateY(12px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
.back-to-top-btn.visible { opacity: 1; transform: none; pointer-events: all; }
.back-to-top-btn:hover { background: var(--green-d); transform: translateY(-2px) !important; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE – TABLET (≤1100px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .cards-3 { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .yt-grid { grid-template-columns: 1fr 1fr; }
  .ytc.feat { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-flat__inner { grid-template-columns: repeat(2,1fr); }
  .icon-grid { grid-template-columns: repeat(3,1fr); }
  .bento-tile--6 { grid-column: span 6; }
  .bento-tile--8 { grid-column: span 12; }
  .bento-tile--4 { grid-column: span 6; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE (≤780px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 780px) {
  :root { --ticker-h: 38px; --nav-h: 62px; }

  .nav-desktop, .nav-right { display: none !important; }
  .nav-hamburger { display: flex !important; }

  .hs { padding: 3rem 0 4rem; min-height: auto !important; }
  .hs__inner { grid-template-columns: 1fr; gap: 0; }
  .hs__right { display: none !important; }
  .hs__h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hs__bullets li { font-size: 14px; }
  .hs__btns { flex-direction: column; gap: .65rem; }
  .hs__btns .btn { width: 100%; justify-content: center; }
  .hs__trust { flex-direction: column; align-items: flex-start; gap: .5rem; border-top: 1px solid var(--border); padding-top: 1rem; }
  .hs__trust-sep { display: none; }
  .hs__scroll { display: none; }

  .trust-strip { padding: 1.25rem; }
  .trust-strip__inner { gap: 1.25rem; }
  .ts-sep { height: 20px; }
  .ts-img { height: 24px; }
  .ts-num { font-size: 1.25rem; }

  .verband-strip__inner { gap: 1rem; }
  .verband-logos { display: none; }

  .icon-grid { grid-template-columns: repeat(2,1fr); gap: .85rem; }
  .ig-item { padding: 1.25rem 1rem; }

  .split-block { grid-template-columns: 1fr; border-radius: var(--r-md); }
  .split-block--flip { direction: ltr; }
  .split-block__img { min-height: 220px; }
  .split-block__text { padding: 2.5rem 1.5rem; }
  .split-block__img-placeholder { min-height: 220px; }

  .bento-tile--6, .bento-tile--8, .bento-tile--4 { grid-column: span 12; }
  .bento-card { min-height: 220px; }

  .stats-flat { padding: 3.5rem 1.5rem; }
  .stats-flat__inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .sf-num { font-size: 2.2rem; }
  .sf-item { padding: 1.5rem .75rem; }

  .price-grid { grid-template-columns: 1fr; }
  .price-card--best { order: -1; }
  .demo-banner { flex-direction: column; text-align: center; }
  .demo-banner .btn { width: 100%; justify-content: center; }

  .testi-grid { grid-template-columns: 1fr; }
  .cards-3    { grid-template-columns: 1fr; }

  .faq-list { max-width: 100%; }
  .faq-item__q { font-size: 14px; padding: 1rem 1.1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand__desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-bottom__links { justify-content: center; flex-wrap: wrap; }
  .footer-cta__btns { flex-direction: column; align-items: center; }

  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .container { padding: 0 1.1rem; }
  .nav-domain { display: none; }
  .nav-logo { height: 30px; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; justify-content: center; }
  .sph { padding: 3rem 0; }
  .sph h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .yt-grid { grid-template-columns: 1fr; }
  .ytc.feat { grid-column: auto; }
  .yt-top { flex-direction: column; align-items: flex-start; }
  .back-to-top-btn { bottom: 1rem; right: 1rem; }
}

/* ════════════════════════════════════════════════════════════════
   TINY MOBILE (≤400px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .icon-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__inner { gap: .85rem; }
  .stats-flat__inner { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   ACCESSIBILITY & PRINT
════════════════════════════════════════════════════════════════ */
*:focus-visible { outline: 3px solid var(--blue-l); outline-offset: 3px; border-radius: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print {
  .ticker-wrap, .site-header, .nav-hamburger, .footer-cta, .support-strip { display: none !important; }
}
