:root {
--eo-dark: #0f172a;
--eo-text: #1f2937;
--eo-muted: #6b7280;
--eo-bg: #f5f8fb;
--eo-line: #e5edf4;
--eo-brand: #17b7d6;
--eo-brand-dark: #0a87a6;
--eo-green: #2fb56f;
--eo-white: #ffffff;
--eo-radius: 22px;
--eo-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
--eo-shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.06);
--eo-max: 1290px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--eo-text);
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.eo-container {
  width: min(var(--eo-max), calc(100% - 40px));
  margin: 0 auto;
}

.eo-section {
  padding: 75px 0;
}

.eo-section--light {
  background: radial-gradient(circle at 12% 18%, rgba(62,194,183,0.08), transparent 28%), #f7fbff;
}

.eo-topper {
  max-width: 920px;
  margin-bottom: 34px;
  margin: 0 auto 34px;
  text-align: center;

}

.eo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(23, 183, 214, 0.10);
  color: var(--eo-brand-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.eo-h1,
.eo-h2,
.eo-h3 {
  margin: 0 0 25px;
  color: var(--eo-dark);
  line-height: 1.08;
}

.eo-h1 {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  max-width: 720px;
}

.eo-h1 span {
  background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
    background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eo-h2 {
  font-size: clamp(25px, 4vw, 40px);
}

.eo-h3 {
  font-size: clamp(20px, 2vw, 28px);
}

.eo-lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--eo-text);
  font-weight: 600;
  margin: 0 0 32px;
}

.eo-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--eo-text);
  margin: 0;
}

.eo-muted {
  color: var(--eo-muted);
}

.eo-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.eo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.eo-btn--primary {
  background: transparent linear-gradient(245deg, #213A8F 0%, #33CCFF 49%, #2FAC66 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
.eo-btn--primary:hover {
  background: #fff;
  border-color: var(--eo-line);
  color: var(--eo-dark);
  -webkit-text-fill-color: unset;
}

.eo-btn--ghost {
  background: #fff;
  border-color: var(--eo-line);
  color: var(--eo-dark);
}

.eo-btn--ghost:hover {
  border-color: var(--eo-brand);
  color: var(--eo-brand-dark);
}

.eo-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.eo-badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--eo-shadow-sm);
  border: 1px solid var(--eo-line);
}

.eo-badge-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 50px;
}

.eo-badge-card span {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.eo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eo-list li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--eo-text);
}

.eo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--eo-brand), var(--eo-green));
  color: #fff;
  font-weight: 800;
}
.eo-card--feature img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Header */
.eo-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 237, 244, .9);
}

.eo-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.eo-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
}

.eo-logo__brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--eo-dark);
}

.eo-logo__claim {
  font-size: 13px;
  font-weight: 700;
  color: var(--eo-brand-dark);
}

.eo-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.eo-nav__link {
  font-weight: 700;
  color: var(--eo-dark);
  transition: .2s ease;
  white-space: nowrap;
}

.eo-nav__link:hover,
.eo-nav__link:focus {
  color: var(--eo-brand-dark);
}

.eo-nav__cta {
  margin-left: 6px;
}

/* Hero */
.eo-hero {
  position: relative;
  overflow: hidden;
  max-height: calc(100vh - 100px);
  color: #fff;
  background: linear-gradient(90deg, rgb(4, 11, 30) 0%, rgba(26, 40, 58, 0.72) 30%, rgba(255, 255, 255, 0.18) 100%), url('../images/header_index.jpg') center center / cover no-repeat;
}

.eo-hero__inner {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 0px 0 50px;
}

.eo-hero .eo-eyebrow {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.eo-hero .eo-h1,
.eo-hero .eo-lead,
.eo-hero .eo-text,
.eo-hero .eo-muted {
  color: #fff;
}

.eo-hero__copy {
  max-width: 720px;
}

.eo-hero__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eo-hero__list li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
}

.eo-hero__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2fae71;
  font-weight: 800;
}

.eo-hero__meta {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.eo-referenzen-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: radial-gradient(circle at 18% 18%, rgba(62, 194, 183, 0.13), transparent 34%), radial-gradient(circle at 85% 78%, rgba(46, 110, 207, 0.12), transparent 38%), #fff;
}

/* Logo-Leiste unter dem Hero */
.eo-logo-strip {
  padding: 25px 0;
  background: #fff;
}

.eo-logo-strip__inner {
  padding-top: 0;
}

.eo-logo-strip__label {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--eo-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.eo-logo-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.eo-logo-strip__item {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--eo-line);
  border-radius: 18px;
  box-shadow: var(--eo-shadow-sm);
}

.eo-logo-strip__item:hover {
    background: #fff;
  }

.eo-logo-strip__item img {
  max-height: 46px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: .2s ease;
}

.eo-logo-strip__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Landingpage Hero mit Video rechts */
.eo-hero--landing {
  background: linear-gradient(90deg, rgb(4, 11, 30) 0%, rgba(26, 40, 58, 0.72) 50%, rgba(255, 255, 255, 0.18) 100%), url('../images/header_erp.jpg') center center / cover no-repeat;
}

.eo-hero--landing .eo-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
  min-height: 740px;
}

.eo-hero__video {
  display: flex;
  flex-direction: column;
  align-items: center; /* sorgt für saubere Zentrierung */
}

.eo-hero__video-trust {
  margin-top: 14px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.eo-hero__video-box {
  width: 100%;
  max-width: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--eo-shadow);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.eo-hero__video-box video,
.eo-hero__video-box iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  display: block;
  border: 0;
  background: #000;
}

.eo-proof-list {
  display: grid;
  gap: 18px;
}

.eo-proof-item {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--eo-line);
  box-shadow: var(--eo-shadow-sm);
}

.eo-proof-item__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--eo-dark);
}

.eo-proof-item__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--eo-text);
}

.eo-highlight {
  background: linear-gradient(145deg, rgba(23,183,214,.08), rgba(47,181,111,.08)), #fff;
  border: 1px solid var(--eo-line);
  border-radius: 30px;
  box-shadow: var(--eo-shadow);
  padding: 42px;
}

/* Produkt-Hero Variante */
.eo-hero--product {
  background: linear-gradient(90deg, rgb(4, 11, 30) 0%, rgba(26, 40, 58, 0.72) 50%, rgba(255, 255, 255, 0.18) 100%), url('../images/header_produkt.jpg') center center / cover no-repeat;
}

.eo-hero--product .eo-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: 720px;
}

.eo-hero__media {
  display: flex;
  justify-content: flex-end;
}

.eo-hero__media-box {
  width: 100%;
  max-width: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--eo-shadow);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.eo-hero__media-box img {
  width: 100%;
  height: auto;
  display: block;
}

.eo-hero__trust {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

@media (max-width: 1120px) {
  .eo-hero {
    max-height: unset;
  }
  .eo-logo-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .eo-hero--landing .eo-hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .eo-hero__video {
    justify-content: flex-start;
  }

  .eo-hero__video-box {
    max-width: 700px;
  }
  .eo-hero--product .eo-hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .eo-hero__media {
    justify-content: flex-start;
  }
  .eo-hero__media-box {
    max-width: 680px;
  }
}

@media (max-width: 860px) {
  .eo-hero--landing .eo-hero__inner {
    padding: 20px 0;
  }
  .eo-highlight {
    padding: 28px;
  }
  .eo-hero--product .eo-hero__inner {
    min-height: auto;
    padding: 25px 0;
  }
}

@media (max-width: 640px) {
  .eo-logo-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eo-logo-strip__item {
    min-height: 82px;
    padding: 14px 16px;
  }

  .eo-logo-strip__item img {
    max-height: 38px;
  }
}

/* Grid / Cards */
.eo-grid {
  display: grid;
  gap: 26px;
}

.eo-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eo-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eo-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.eo-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--eo-radius);
  background: #fff;
  border: 1px solid var(--eo-line);
  box-shadow: var(--eo-shadow-sm);
}

.eo-card--feature {
  text-align: left;
}

.eo-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
}

.eo-card__title {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--eo-dark);
}

.eo-card__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--eo-text);
}

/* Overview section */
.eo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.eo-panel {
  background: #fff;
  border: 1px solid var(--eo-line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--eo-shadow);
}
.eo-panel.gruender {
  padding: 34px 34px 12px;
}
.eo-module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.eo-module-item {
  padding: 18px 18px 18px 50px;
  border-radius: 18px;
  background: var(--eo-bg);
  position: relative;
  font-weight: 700;
  color: var(--eo-dark);
  border: 1px solid var(--eo-line);
  font-size: 14px;
  line-height: 20px;
}

.eo-module-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--eo-brand), var(--eo-green));
  box-shadow: 0 0 0 6px rgba(23,183,214,0.10);
}

/* Timeline / how it works */
.eo-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 18px;
}

.eo-step {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--eo-line);
  box-shadow: var(--eo-shadow-sm);
}

.eo-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent linear-gradient(235deg, #3CF 0%, #2FAC66 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
}

/* Testimonials */
.eo-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 26px;
}

.eo-testimonial {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--eo-line);
  box-shadow: var(--eo-shadow-sm);
  height: 100%;
}

.eo-testimonial__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.eo-testimonial__img {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  object-fit: cover;
  flex: 0 0 100px;
  overflow: hidden;
}

.eo-testimonial__name {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--eo-dark);
}

.eo-testimonial__role {
  margin: 0;
  font-size: 14px;
  color: var(--eo-muted);
  line-height: 1.45;
}

.eo-quote {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--eo-text);
}

/* SVG-Icons für Karten auf der Landingpage */
.eo-card .eo-functions-module-card__icon {
  position: relative;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  margin-bottom: 20px;
}

.eo-card .eo-functions-module-card__icon svg {
  width: 28px;
  height: 28px;
  color: #2e6ecf;
  stroke: currentColor;
  position: relative;
  z-index: 1;
}

.eo-card .eo-functions-module-card__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.eo-card:hover .eo-functions-module-card__icon::before {
  opacity: 1;
}

.eo-hero-layout {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 60px;
  align-items: center;
}

.eo-hero-text {
  max-width: 800px;
}

.eo-hero-image {
  text-align: right;
}

.eo-hero-image img {
  width: 100%;
  max-width: 470px;
  height: auto;
}

.eo-modules-premium {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.eo-modules-premium__topper {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.eo-modules-premium__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #dcecf3;
  color: #0486b7;
  font-weight: 700;
  font-size: 15px;
}

.eo-modules-premium__intro {
  max-width: 860px;
  margin: 0 auto;
}

.eo-modules-premium__layout {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.eo-modules-premium__mobile {
  margin-bottom: 24px;
}

.eo-modules-premium__select-label {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #051b4d;
}

.eo-modules-premium__select {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid #d9e4ec;
  background: #fff;
  box-shadow: none;
}

.eo-modules-premium__sidebar {
  position: sticky;
  top: 115px;
}

.eo-modules-premium__sidebar-box {
  background: #ffffff;
  border: 1px solid #dce6ee;
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(8, 26, 63, 0.05);
}

.eo-modules-premium__sidebar-head {
  margin-bottom: 18px;
}

.eo-modules-premium__sidebar-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0aa4c2;
  margin-bottom: 8px;
}

.eo-modules-premium__sidebar-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #051b4d;
}

.eo-modules-premium__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eo-module-nav-premium {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #dce6ee;
  border-radius: 20px;
  background: #f7fafc;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.eo-module-nav-premium:hover {
  transform: translateY(-2px);
  border-color: #c7dceb;
  background: #ffffff;
  box-shadow: 0 5px 5px rgba(8, 26, 63, 0.06);
}

.eo-module-nav-premium.active {
  background: #ffffff;
  border-color: #b9d9eb;
  box-shadow: 0 5px 5px rgba(8, 26, 63, 0.08);
}

.eo-module-nav-premium__dot {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: transparent linear-gradient(235deg, #3CF 0%, #2FAC66 100%) 0% 0% no-repeat padding-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.eo-module-nav-premium__dot svg {
  width: 18px;
  height: 18px;
  display: block;
}

.eo-module-nav-premium__content {
  min-width: 0;
}

.eo-module-nav-premium__title {
  margin: 0;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  color: #051b4d;
}

.eo-module-nav-premium__meta {
  font-size: 13px;
  color: #6a7893;
  display: block;
}

.eo-module-stage {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,252,0.98) 100%);
  border: 1px solid #dce6ee;
  box-shadow: 0 20px 50px rgba(8, 26, 63, 0.08);
  overflow: hidden;
}

.eo-module-stage__bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(45px);
  pointer-events: none;
  opacity: 0.5;
}

.eo-module-stage__bg--1 {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -50px;
  background: rgba(62, 194, 183, 0.16);
}

.eo-module-stage__bg--2 {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -120px;
  background: rgba(46, 110, 207, 0.14);
}

.eo-module-stage__header,
.eo-module-stage__benefits,
.eo-module-stage__section-head,
.eo-module-stage__grid,
.eo-module-stage__footer {
  position: relative;
  z-index: 2;
}

.eo-module-stage__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 10px;
}

.eo-module-stage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0897bf;
}

.eo-module-stage__title-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.eo-module-stage__icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 22px;
  background: transparent linear-gradient(235deg, #3CF 0%, #2FAC66 100%) 0% 0% no-repeat padding-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(46, 110, 207, 0.22);
}

.eo-module-stage__icon svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.eo-module-stage__title {
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #051b4d;
}

.eo-module-stage__desc {
  margin: 0;
  max-width: 800px;
  font-size: 15px;
  line-height: 1.75;
  color: #41516f;
}

.eo-module-stage__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.eo-module-stage__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #e4f1f5;
  color: #0486b7;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.eo-module-stage__mini-benefit {
  font-size: 13px;
  color: #6a7893;
  font-weight: 600;
}

.eo-module-stage__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  margin-left: 87px;
}

.eo-module-benefit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 5px 10px;
  border-radius: 16px;
  background: #f4f8fb;
  border: 1px solid #dbe7ef;
  color: #051b4d;
  font-size: 12px;
  font-weight: 700;
}

.eo-module-benefit__check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eo-module-benefit__check svg {
  width: 12px;
  height: 12px;
}

.eo-module-stage__section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.eo-module-stage__section-title {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #051b4d;
}

.eo-module-stage__section-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #667792;
}

.eo-module-stage__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.eo-module-cluster-premium {
  position: relative;
  min-height: 200px;
  padding: 24px 22px 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #dce6ee;
  box-shadow: 0 10px 24px rgba(8, 26, 63, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.eo-module-cluster-premium__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eo-module-cluster-premium__title {
  margin: 0;
}

.eo-module-cluster-premium:hover {
  transform: translateY(-4px);
  border-color: #c9ddeb;
  box-shadow: 0 18px 34px rgba(8, 26, 63, 0.08);
}

.eo-module-cluster-premium::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3ec2b7 0%, #2e6ecf 100%);
}

.eo-module-cluster-premium__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eff7fb;
  color: #0b8eba;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.eo-module-cluster-premium__icon svg {
  width: 22px;
  height: 22px;
}

.eo-module-cluster-premium__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.32;
  font-weight: 800;
  color: #051b4d;
}

.eo-module-cluster-premium__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.32;
  color: #51627d;
}

.eo-module-stage__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #dce6ee;
  flex-wrap: wrap;
}

.eo-module-stage__note-wrap {
  flex: 1 1 420px;
}

.eo-module-stage__note-label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0897bf;
}

.eo-module-stage__note {
  font-size: 15px;
  line-height: 1.7;
  color: #41516f;
}

.eo-module-stage__cta-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eo-btn-gradient,
.eo-btn-ghost {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.eo-btn-gradient {
  color: #fff;
  background: transparent linear-gradient(245deg, #213A8F 0%, #33CCFF 49%, #2FAC66 100%) 0% 0% no-repeat padding-box;
  border: 1px solid transparent;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  transition: all .2s ease;
}

.eo-btn-gradient.eo-cta-saas__button {
  border: unset;
}

.eo-btn-ghost {
  color: #051b4d;
  background: #ffffff;
  border: 1px solid #d6e2eb;
}

.eo-btn-gradient:hover {
  background: #fff;
  border: 1px solid var(--eo-line);
  color: var(--eo-dark);
  -webkit-text-fill-color: unset;
}

.eo-module-fade-in {
  animation: eoModuleFade 0.45s ease;
}

@keyframes eoModuleFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA */
.eo-cta-box {
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(23,183,214,.08), rgba(47,181,111,.08)),
    #fff;
  border: 1px solid var(--eo-line);
  box-shadow: var(--eo-shadow);
  text-align: center;
}

.eo-cta-meta {
  margin-top: 16px;
  color: var(--eo-muted);
  font-size: 15px;
  line-height: 1.6;
}

.eo-cta-premium__box {
  position: relative;
  padding: 50px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border: 1px solid #dce6ee;
  box-shadow: 0 20px 50px rgba(8, 26, 63, 0.08);
  text-align: center;
  overflow: hidden;
}

.eo-cta-premium__pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e4f1f5;
  color: #0486b7;
  font-weight: 700;
  margin-bottom: 16px;
}

.eo-cta-premium__lead {
  max-width: 720px;
  margin: 0 auto 28px;
}

.eo-cta-premium__benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.eo-cta-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f8fb;
  border: 1px solid #dbe7ef;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.eo-cta-benefit__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.eo-cta-premium__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
  text-align: left;
}

.eo-cta-card {
  background: #ffffff;
  border: 1px solid #dce6ee;
  border-radius: 20px;
  padding: 20px;
}

.eo-cta-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.eo-cta-premium__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.eo-cta-premium__meta {
  font-size: 14px;
  color: #667085;
  font-weight: 600;
}

.eo-cta-saas {
  position: relative;
}

.eo-cta-saas__wrap {
  position: relative;
  padding: 54px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
  border: 1px solid #dce6ee;
  box-shadow: 0 24px 60px rgba(8, 26, 63, 0.08);
  overflow: hidden;
}

.eo-cta-saas__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(45px);
  pointer-events: none;
  opacity: 0.5;
}

.eo-cta-saas__glow--1 {
  width: 240px;
  height: 240px;
  top: -90px;
  right: -70px;
  background: rgba(62, 194, 183, 0.16);
}

.eo-cta-saas__glow--2 {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -120px;
  background: rgba(46, 110, 207, 0.12);
}

.eo-cta-saas__top,
.eo-cta-saas__highlights,
.eo-cta-saas__grid,
.eo-cta-saas__actionbox {
  position: relative;
  z-index: 2;
}

.eo-cta-saas__top {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eo-cta-saas__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(23, 183, 214, 0.10);
  color: var(--eo-brand-dark);
  font-size: 14px;
  font-weight: 700;
}

.eo-cta-saas__title {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.eo-cta-saas__lead {
  max-width: 780px;
  margin: 18px auto 0;
}

.eo-cta-saas__highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.eo-cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 16px;
  background: #f4f8fb;
  border: 1px solid #dbe7ef;
  color: #051b4d;
  font-size: 14px;
  font-weight: 700;
}

.eo-cta-chip__icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

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

.eo-cta-saas-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dce6ee;
  box-shadow: 0 10px 24px rgba(8, 26, 63, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.eo-cta-saas-card:hover {
  transform: translateY(-3px);
  border-color: #c9ddeb;
  box-shadow: 0 18px 34px rgba(8, 26, 63, 0.08);
}

.eo-cta-saas-card__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(46, 110, 207, 0.18);
}

.eo-cta-saas-card__title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  color: #051b4d;
  font-weight: 800;
}

.eo-cta-saas-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #51627d;
}

.eo-cta-saas__actionbox {
  margin-top: 32px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(242,247,251,0.88) 100%);
  border: 1px solid #dce6ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.eo-cta-saas__action-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eo-cta-saas__button {
  min-width: 320px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background: transparent linear-gradient(245deg, #213A8F 0%, #33CCFF 49%, #2FAC66 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0 14px 28px rgba(46, 110, 207, 0.22);
  transition: all .2s ease;
  cursor: pointer;
}

.eo-cta-saas__button:hover {
  color: var(--eo-dark);
}

.eo-cta-saas__microcopy {
  font-size: 14px;
  line-height: 1.5;
  color: #667792;
  font-weight: 600;
}

.eo-cta-saas__socialproof {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
}

.eo-cta-saas__avatars {
  display: flex;
  align-items: center;
}

.eo-cta-saas__avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
  margin-left: -10px;
  box-shadow: 0 6px 14px rgba(8, 26, 63, 0.08);
}

.eo-cta-saas__avatars span:first-child {
  margin-left: 0;
}

.eo-cta-saas__socialtext {
  font-size: 14px;
  line-height: 1.6;
  color: #51627d;
  font-weight: 600;
}

.eo-flexy-sticker {
  --eo-flexy-blue: #2e6ecf;
  --eo-flexy-green: #3ec2b7;
  --eo-flexy-dark: #10243f;

  position: fixed;
  right: 0;
  bottom: 112px;
  z-index: 990;
  width: 420px;
  height: 118px;
  display: block;
  text-decoration: none;
  transform: translateX(285px);
  transition:
    transform .42s cubic-bezier(.2,.9,.2,1),
    opacity .25s ease,
    filter .25s ease;
  filter: drop-shadow(0 20px 36px rgba(15,23,42,.14));
}

.eo-flexy-sticker:hover,
.eo-flexy-sticker:focus-visible {
  transform: translateX(10px);
  filter: drop-shadow(0 28px 52px rgba(15,23,42,.18));
}

.eo-flexy-sticker__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 15px 128px;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 15%, rgba(62,194,183,.16), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(46,110,207,.13), transparent 42%),
    rgba(255,255,255,.95);
  border: 1px solid rgba(15,23,42,.08);
  border-right: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.88),
    0 24px 62px rgba(15,23,42,.13);
  backdrop-filter: blur(16px);
}

.eo-flexy-sticker__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px 0 0 30px;
  background: linear-gradient(135deg, rgba(62,194,183,.75), rgba(46,110,207,.55), rgba(255,255,255,.35));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.eo-flexy-sticker__avatar {
  position: absolute;
  z-index: 3;
  left: 14px;
  top: 50%;
  width: 92px;
  height: 92px;
  transform: translateY(-50%) rotate(0deg);
  border-radius: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--eo-flexy-green), var(--eo-flexy-blue)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 16px 34px rgba(46,110,207,.16);
  transition: transform .34s ease;
}

.eo-flexy-sticker:hover .eo-flexy-sticker__avatar,
.eo-flexy-sticker:focus-visible .eo-flexy-sticker__avatar {
  transform: translateY(-50%) rotate(0deg) scale(1.03);
}

.eo-flexy-sticker__avatar img {
  width: 150px;
  max-width: none;
  height: auto;
  transform: translate(-38px, 0px);
  filter: drop-shadow(0 12px 18px rgba(15,23,42,.2));
}

.eo-flexy-sticker__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity .22s ease .08s, transform .28s ease .08s;
}

.eo-flexy-sticker:hover .eo-flexy-sticker__content,
.eo-flexy-sticker:focus-visible .eo-flexy-sticker__content {
  opacity: 1;
  transform: translateX(0);
}

.eo-flexy-sticker__kicker {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(62,194,183,.14), rgba(46,110,207,.12));
  color: var(--eo-flexy-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  margin-left: -10px;
}

.eo-flexy-sticker__content strong {
  display: block;
  color: var(--eo-flexy-dark);
  font-size: 14px;
  line-height: 1.18;
  margin-bottom: 4px;
}

.eo-flexy-sticker__content small {
  display: block;
  color: #52647c;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.eo-flexy-sticker__arrow {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--eo-flexy-green), var(--eo-flexy-blue));
  box-shadow: 0 14px 28px rgba(46,110,207,.22);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity .22s ease .1s, transform .28s ease .1s;
}

.eo-flexy-sticker:hover .eo-flexy-sticker__arrow,
.eo-flexy-sticker:focus-visible .eo-flexy-sticker__arrow {
  opacity: 1;
  transform: translateX(0);
}

.eo-flexy-sticker__arrow svg {
  width: 19px;
  height: 19px;
}

.eo-flexy-sticker.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(330px) translateY(16px);
}

.eo-legal-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 54px;
  background:
    radial-gradient(circle at 18% 18%, rgba(62,194,183,0.13), transparent 34%),
    radial-gradient(circle at 86% 28%, rgba(46,110,207,0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.eo-legal-hero__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: center;
}

.eo-legal-hero__content {
  max-width: 780px;
}

.eo-legal-hero .eo-h1 {
  margin-bottom: 14px;
}

.eo-legal-hero__badge {
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(62,194,183,0.16), transparent 34%),
    rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow: 0 24px 65px rgba(15,23,42,0.09);
}

.eo-legal-hero__badge span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7ff;
  color: #2e6ecf;
  font-weight: 900;
  font-size: 13px;
}

.eo-legal-hero__badge strong {
  display: block;
  color: #10243f;
  font-size: 26px;
  line-height: 1.2;
}

.eo-legal-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.eo-legal-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.eo-legal-sidebar__box,
.eo-legal-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow: 0 22px 58px rgba(15,23,42,0.075);
}

.eo-legal-sidebar__box {
  padding: 24px;
  border-radius: 28px;
}

.eo-legal-sidebar__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef7ff;
  color: #2e6ecf;
  font-size: 12px;
  font-weight: 900;
}

.eo-legal-sidebar__box strong {
  display: block;
  color: #10243f;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.eo-legal-sidebar__box p,
.eo-legal-sidebar__box a {
  display: block;
  color: #52647c;
  line-height: 1.55;
  margin: 0;
  text-decoration: none;
  font-weight: 700;
}

.eo-legal-sidebar__box a + a {
  margin-top: 8px;
}

.eo-legal-sidebar__box a:hover {
  color: #2e6ecf;
}

.eo-legal-main {
  display: grid;
  gap: 22px;
}

.eo-legal-card {
  padding: 34px;
  border-radius: 32px;
}

.eo-legal-card__head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.eo-legal-card__head span {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
  box-shadow: 0 16px 34px rgba(46,110,207,0.18);
}

.eo-legal-card__head h2 {
  margin: 0;
  color: #10243f;
  font-size: 25px;
  line-height: 1.2;
}

.eo-legal-info-grid,
.eo-legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.eo-legal-info-grid > div,
.eo-legal-contact-grid > a,
.eo-legal-contact-grid > div {
  padding: 22px;
  border-radius: 24px;
  background: #f8fbff;
  border: 1px solid rgba(15,23,42,0.06);
}

.eo-legal-contact-grid > a {
  text-decoration: none;
  transition: all .22s ease;
}

.eo-legal-contact-grid > a:hover {
  box-shadow: 0 14px 32px rgba(15,23,42,0.08);
}

.eo-legal-card h3 {
  margin: 0 0 8px;
  color: #10243f;
  font-size: 18px;
  line-height: 1.3;
}

.eo-legal-card p {
  color: #52647c;
  line-height: 1.65;
  margin: 0 0 14px;
}

.eo-legal-card p:last-child {
  margin-bottom: 0;
}

.eo-legal-contact-grid small {
  display: block;
  color: #64748b;
  font-weight: 800;
  margin-bottom: 6px;
}

.eo-legal-contact-grid strong {
  display: block;
  color: #10243f;
  font-size: 17px;
  line-height: 1.35;
}

.eo-legal-inline-link {
  color: #2e6ecf;
  font-weight: 900;
  text-decoration: none;
  word-break: break-word;
}

.eo-legal-inline-link:hover {
  text-decoration: underline;
}

.eo-legal-small {
  font-size: 13.5px;
  line-height: 1.65;
}

/* Footer */
.eo-footer {
  background: var(--eo-dark);
  color: #fff;
  padding: 100px 0 35px;
}

.eo-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.eo-footer__title {
  margin: 0 0 14px;
  font-size: 18px;
  color: #fff;
}

.eo-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.eo-footer__list a,
.eo-footer__contact a {
  color: rgba(255,255,255,0.82);
  transition: .2s ease;
}

.eo-footer__list a:hover,
.eo-footer__contact a:hover {
  color: #fff;
}

.eo-footer__contact {
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.eo-footer__bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

@media (max-width: 1200px) {
  .eo-modules-premium {
    padding: 85px 0;
  }

  .eo-modules-premium__layout {
    display: block;
  }

  .eo-module-stage {
    padding: 24px;
    border-radius: 26px;
  }

  .eo-module-stage__header {
    grid-template-columns: 1fr;
  }

  .eo-module-stage__meta {
    align-items: flex-start;
  }
}

@media (max-width: 1120px) {
  .eo-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eo-testimonials { grid-template-columns: 1fr; }
  .eo-footer__grid { grid-template-columns: 1fr 1fr; }
  .eo-split { grid-template-columns: 1fr; }
}
@media (max-width: 992px) {
  .eo-hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .eo-hero-image {
    text-align: center;
  }

  .eo-hero-image img {
    max-width: 300px;
  }
  .eo-cta-saas__wrap {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .eo-cta-saas__grid {
    grid-template-columns: 1fr;
  }

  .eo-cta-saas__actionbox {
    flex-direction: column;
    align-items: stretch;
  }

  .eo-cta-saas__socialproof {
    max-width: none;
  }

   .eo-legal-hero {
    padding: 54px 0 40px;
  }

  .eo-legal-hero__layout,
  .eo-legal-layout {
    grid-template-columns: 1fr;
  }

  .eo-legal-sidebar {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .eo-footer {
    background: var(--eo-dark);
    color: #fff;
    padding: 0 0 35px;
  }
}

@media (max-width: 860px) {
  .eo-header__inner {
    padding: 16px 0;
    align-items: flex-start;
  }
  .eo-logo {
    min-width: auto;
  }
  .eo-nav {
    gap: 14px 18px;
  }
  .eo-grid--3,
  .eo-grid--2,
  .eo-grid--4,
  .eo-steps {
    grid-template-columns: 1fr;
  }
  .eo-module-list {
    grid-template-columns: 1fr;
  }
  .eo-section {
    padding: 30px 0;
  }
  .eo-hero {
    background: linear-gradient(135deg, rgb(4, 11, 30) 0%, rgba(26, 40, 58, 0.72) 50%, rgba(255, 255, 255, 0.18) 100%), url('../images/header_index.jpg') right center/ cover no-repeat;
  }
  .eo-hero__inner {
    min-height: 680px;
    padding: 25px 0;
  }
}

@media (max-width: 768px) {

  .eo-h2, .eo-h3 {
  line-height: 1.2;
  }
  .eo-module-stage__title-row {
    flex-direction: column;
    gap: 14px;
  }

  .eo-module-stage__icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
  }

  .eo-module-stage__grid {
    grid-template-columns: 1fr;
  }

  .eo-module-cluster-premium {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .eo-module-stage__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .eo-module-stage__cta-wrap {
    flex-direction: column;
  }

  .eo-btn-gradient,
  .eo-btn-ghost {
    width: 100%;
    min-width: 100%;
    line-height: 1.3;
    padding: 10px 15px;
    text-align: center;
  }
  .eo-cta-premium__box {
    padding: 30px 20px;
  }

  .eo-cta-premium__grid {
    grid-template-columns: 1fr;
  }
  .eo-cta-saas__button {
    min-width: 100%;
    width: 100%;
    line-height: 1;
    padding: 10px 15px;
    text-align: center;
  }

  .eo-cta-saas-card {
    padding: 20px;
    border-radius: 20px;
  }

  .eo-cta-saas-card__title {
    font-size: 20px;
  }
  .eo-module-stage__benefits {
    margin-left: 0;
  }

  .eo-module-stage__note-wrap {
    flex: 1;
  }

 .eo-flexy-sticker {
    right: 14px;
    bottom: 10px;
    width: 76px;
    height: 76px;
    transform: none;
    filter: drop-shadow(0 16px 30px rgba(15,23,42,.16));
  }

  .eo-flexy-sticker:hover,
  .eo-flexy-sticker:focus-visible {
    transform: translateY(-2px);
  }

  .eo-flexy-sticker__panel {
    display: none;
  }

  .eo-flexy-sticker__avatar {
    inset: 0;
    width: 76px;
    height: 76px;
    transform: none;
    border-radius: 24px;
  }

  .eo-flexy-sticker:hover .eo-flexy-sticker__avatar,
  .eo-flexy-sticker:focus-visible .eo-flexy-sticker__avatar {
    transform: scale(1.03);
  }

  .eo-flexy-sticker__avatar img {
    width: 108px;
    transform: translate(0, 13px);
  }

  .eo-flexy-sticker.is-hidden {
    transform: translateY(14px);
  }

.eo-legal-sidebar,
  .eo-legal-info-grid,
  .eo-legal-contact-grid {
    grid-template-columns: 1fr;
  }

  .eo-legal-hero__badge,
  .eo-legal-card,
  .eo-legal-sidebar__box {
    border-radius: 24px;
  }

  .eo-legal-card {
    padding: 24px;
  }

  .eo-legal-card__head {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .eo-legal-card__head span {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .eo-legal-card__head h2 {
    font-size: 21px;
  }

  .eo-legal-info-grid > div,
  .eo-legal-contact-grid > a,
  .eo-legal-contact-grid > div {
    padding: 18px;
    border-radius: 20px;
  }

  .eo-cta-chip {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .eo-container {
    width: min(var(--eo-max), calc(100% - 24px));
  }
  .eo-header__inner {
    gap: 16px;
  }
  .eo-nav {
    font-size: 14px;
  }
  .eo-btn {
    width: 100%;
    text-align: center;
    line-height: 17px;
  }
  .eo-btns {
    flex-direction: column;
  }
  .eo-badge-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #potenzialanalyse .eo-container {
    width: 100%;
  }
  .eo-cta-saas__wrap {
    padding: 34px 16px;
    border-radius: 0;
    border: 0;
  }
  .eo-footer__grid {
    grid-template-columns: 1fr;
  }
  .eo-cta-box,
  .eo-panel,
  .eo-card,
  .eo-step,
  .eo-testimonial {
    padding: 24px;
  }
  .eo-lead {
    line-height: 1.2;
  }
  .eo-hero__list li {
    font-size: 14px;
    line-height: 1.2;
  }
  .eo-hero__meta {
    text-align: center;
}
  }

/* =========================================================
   Mobile Premium Optimierung fuer die ERP-Landingpage
   Desktop bleibt unveraendert: alle Regeln greifen nur mobil.
   ========================================================= */

@media (max-width: 860px) {
  body {
    overflow-x: hidden;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
  }

  .eo-container {
    width: min(var(--eo-max), calc(100% - 28px));
  }

  .eo-header {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 12px 34px rgba(15,23,42,0.07);
  }

  .eo-header__inner {
    min-height: auto;
    padding: 13px 0;
    align-items: center;
  }

  .eo-logo__brand {
    font-size: 24px;
    letter-spacing: -0.035em;
  }

  .eo-logo__claim {
    font-size: 11px;
  }

  .eo-nav {
    display: none;
  }

  .eo-section {
    padding: 52px 0;
  }

  .eo-section--light {
    background:
      radial-gradient(circle at 10% 0%, rgba(62,194,183,0.13), transparent 32%),
      radial-gradient(circle at 95% 22%, rgba(46,110,207,0.10), transparent 34%),
      linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  .eo-topper {
    margin-bottom: 28px;
    text-align: left;
  }

  .eo-eyebrow {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 12px;
    line-height: 1.2;
    box-shadow: 0 10px 22px rgba(46,110,207,0.08);
  }

  .eo-h1,
  .eo-h2,
  .eo-h3 {
    letter-spacing: -0.035em;
  }

  .eo-h1 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(32px, 10vw, 43px);
    line-height: 1.2;
  }

  .eo-h2 {
    margin-bottom: 16px;
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.2;
  }

  .eo-lead,
  .eo-text {
    font-size: 16px;
    line-height: 1.58;
  }

  .eo-lead {
    margin-bottom: 22px;
    font-weight: 600;
  }

  .eo-grid {
    gap: 16px;
  }

  .eo-card,
  .eo-step,
  .eo-testimonial,
  .eo-panel,
  .eo-cta-box {
    border-radius: 26px;
    border-color: rgba(15,23,42,0.07);
    box-shadow: 0 18px 44px rgba(15,23,42,0.075);
  }

  .eo-card--feature {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,251,255,0.98) 100%);
  }

  .eo-card--feature::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
    opacity: 0.9;
  }

  .eo-card__title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.22;
  }

  .eo-card__text {
    font-size: 15px;
    line-height: 1.58;
  }

  .eo-card .eo-functions-module-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 16px 34px rgba(46,110,207,0.10);
  }

  .eo-card .eo-functions-module-card__icon::before {
    opacity: 1;
  }

  .eo-card .eo-functions-module-card__icon svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 768px) {
  .eo-hero--landing {
    min-height: auto;
    background:
      radial-gradient(circle at 20% 18%, rgba(62,194,183,0.24), transparent 30%),
      radial-gradient(circle at 90% 50%, rgba(46,110,207,0.22), transparent 34%),
      linear-gradient(180deg, rgba(4,11,30,0.96) 0%, rgba(10,28,59,0.94) 58%, rgba(8,24,42,0.97) 100%),
      url('../images/header_erp.jpg') center center / cover no-repeat;
  }

  .eo-hero--landing::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.06), transparent 24%),
      radial-gradient(circle at 50% 100%, rgba(62,194,183,0.18), transparent 42%);
  }

  .eo-hero--landing .eo-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 44px 0 34px;
  }

  .eo-hero__copy {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .eo-hero .eo-h1 {
    text-wrap: balance;
  }

  .eo-hero .eo-lead {
    max-width: 640px;
    color: rgba(255,255,255,0.88);
    font-size: 17px;
    line-height: 1.5;
  }

  .eo-hero__list {
    gap: 10px;
    margin-top: 6px;
  }

  .eo-hero__list li {
    min-height: 46px;
    padding: 12px 14px 12px 44px;
    border-radius: 18px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow: 0 12px 34px rgba(0,0,0,0.12);
    backdrop-filter: blur(12px);
    color: rgba(255,255,255,0.94);
    font-size: 14.5px;
    line-height: 1.35;
  }

  .eo-hero__list li::before {
    left: 13px;
    top: 12px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
    box-shadow: 0 8px 18px rgba(46,110,207,0.26);
  }

  .eo-hero .eo-btns {
    gap: 10px;
    margin-top: 22px;
  }

  .eo-hero .eo-btn {
    min-height: 54px;
    padding: 13px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.2;
    box-shadow: 0 14px 28px rgba(0,0,0,0.16);
  }

  .eo-hero .eo-btn--primary {
    background: linear-gradient(135deg, #3ec2b7 0%, #2e6ecf 100%);
  }

  .eo-hero .eo-btn--ghost {
    color: #ffffff;
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
  }

  .eo-hero__meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    padding: 11px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.84);
    font-size: 13px;
    text-align: center;
  }

  .eo-hero__video {
    width: 100%;
  }

  .eo-hero__video-box {
    max-width: none;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 24px 64px rgba(0,0,0,0.30);
  }

  .eo-hero__video-box video,
  .eo-hero__video-box iframe {
    aspect-ratio: 16 / 9;
  }

  .eo-hero__video-trust {
    width: 100%;
    margin-top: 12px;
    padding: 11px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.13);
    font-size: 13px;
    line-height: 1.35;
  }

  .eo-logo-strip {
    padding: 22px 0 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  }

  .eo-logo-strip__label {
    margin-bottom: 12px;
    font-size: 11px;
    text-align: center;
  }

  .eo-logo-strip__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .eo-logo-strip__grid::-webkit-scrollbar {
    display: none;
  }

  .eo-logo-strip__item {
    flex: 0 0 68%;
    min-height: 78px;
    padding: 14px 18px;
    border-radius: 20px;
    scroll-snap-align: center;
    box-shadow: 0 14px 32px rgba(15,23,42,0.07);
  }

  .eo-logo-strip__item img {
    max-height: 36px;
  }

  .eo-testimonial__head {
    align-items: flex-start;
    gap: 14px;
  }

  .eo-testimonial__img {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    border-radius: 20px;
  }

  .eo-testimonial__name {
    font-size: 17px;
  }

  .eo-testimonial__role {
    font-size: 13px;
  }

  .eo-panel.gruender {
    padding: 14px 14px 12px;
    border-radius: 28px;
    text-align: center;
  }

  .eo-panel.gruender img {
    width: 100%;
    border-radius: 22px !important;
  }

  .eo-list li {
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.5;
  }

  .eo-list li + li {
    margin-top: 10px;
  }

  .eo-split {
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .eo-container {
    width: min(var(--eo-max), calc(100% - 30px));
  }

  .eo-section {
    padding: 46px 0;
  }

  .eo-h1 {
    font-size: clamp(31px, 10.4vw, 40px);
  }

  .eo-h2 {
    font-size: clamp(26px, 8.8vw, 34px);
  }

  .eo-card,
  .eo-step,
  .eo-testimonial,
  .eo-panel,
  .eo-cta-box {
    padding: 22px;
  }

  .eo-card--feature img {
    border-radius: 20px !important;
    margin-bottom: 16px !important;
  }

  .eo-btns {
    gap: 10px;
  }

  .eo-btn {
    min-height: 54px;
    border-radius: 18px;
    line-height: 1.2;
  }

  .eo-logo-strip__item {
    flex-basis: 76%;
  }

  .eo-topper .img-fluid.w-100 {
    margin-top: 10px !important;
    padding: 10px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
    border: 1px solid rgba(15,23,42,0.07);
    box-shadow: 0 18px 46px rgba(15,23,42,0.08);
  }

  .eo-text.p-4 {
    padding: 18px 0 0 !important;
  }

  .eo-hero--landing .eo-hero__inner {
    padding-top: 36px;
  }

  .eo-hero .eo-lead {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .eo-container {
    width: min(var(--eo-max), calc(100% - 30px));
  }

  .eo-hero--landing .eo-hero__inner {
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .eo-h1 {
    font-size: 31px;
  }

  .eo-h2 {
    font-size: 26px;
  }

  .eo-hero__list li {
    padding-right: 12px;
    font-size: 14px;
  }

  .eo-logo-strip__item {
    flex-basis: 84%;
  }

  .eo-testimonial__head {
    flex-direction: column;
  }
}
/* =========================================================
   Flexy Mobile Update: Cookiebot-safe Darstellung
   Verhindert Ueberlagerung mit dem Cookiebot-Icon unten links.
   Desktop bleibt unveraendert.
   ========================================================= */

@media (max-width: 768px) {
  .eo-flexy-sticker {
    left: auto;
    right: 12px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: min(304px, calc(100vw - 112px));
    height: 70px;
    z-index: 940;
    transform: none;
    display: grid;
    align-items: center;
    filter: drop-shadow(0 18px 34px rgba(15,23,42,.16));
  }

  .eo-flexy-sticker:hover,
  .eo-flexy-sticker:focus-visible {
    transform: translateY(-2px);
  }

  .eo-flexy-sticker__panel {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    align-items: center;
    gap: 8px;
    min-height: 70px;
    padding: 8px 10px 8px 70px;
    border-radius: 22px;
    overflow: hidden;
    background:
      radial-gradient(circle at 12% 12%, rgba(62,194,183,.18), transparent 38%),
      radial-gradient(circle at 100% 100%, rgba(46,110,207,.16), transparent 42%),
      rgba(255,255,255,.97);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.92),
      0 18px 46px rgba(15,23,42,.14);
    backdrop-filter: blur(18px);
  }

  .eo-flexy-sticker__panel::before {
    border-radius: 22px;
    opacity: 1;
  }

  .eo-flexy-sticker__avatar {
    inset: auto;
    left: 8px;
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(46,110,207,.18);
  }

  .eo-flexy-sticker:hover .eo-flexy-sticker__avatar,
  .eo-flexy-sticker:focus-visible .eo-flexy-sticker__avatar {
    transform: translateY(-50%) scale(1.03);
  }

  .eo-flexy-sticker__avatar img {
    width: 84px;
    max-width: none;
    transform: translate(-1px, 10px);
  }

  .eo-flexy-sticker__content {
    opacity: 1;
    transform: none;
    min-width: 0;
    margin-top: -6px;
  }

  .eo-flexy-sticker:hover .eo-flexy-sticker__content,
  .eo-flexy-sticker:focus-visible .eo-flexy-sticker__content {
    opacity: 1;
    transform: none;
  }

  .eo-flexy-sticker__kicker {
    margin: 0px -7px 0px;
    padding: 3px 8px;
    max-width: 100%;
    font-size: 9.5px;
    line-height: 1;
    letter-spacing: .02em;
    color: #2e6ecf;
    background: linear-gradient(135deg, rgba(62,194,183,.16), rgba(46,110,207,.12));
  }

  .eo-flexy-sticker__content strong {
    display: block;
    margin: 0;
    color: #10243f;
    font-size: 12.5px;
    line-height: 1.16;
    white-space: unset;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 28px;
  }

  .eo-flexy-sticker__content small {
    display: none;
  }

  .eo-flexy-sticker__arrow {
    opacity: 1;
    transform: none;
    width: 32px;
    height: 32px;
    border-radius: 13px;
    box-shadow: 0 11px 22px rgba(46,110,207,.20);
  }

  .eo-flexy-sticker:hover .eo-flexy-sticker__arrow,
  .eo-flexy-sticker:focus-visible .eo-flexy-sticker__arrow {
    opacity: 1;
    transform: translateX(1px);
  }

  .eo-flexy-sticker__arrow svg {
    width: 16px;
    height: 16px;
  }

  .eo-flexy-sticker.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }
}

@media (max-width: 420px) {
  .eo-flexy-sticker {
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    width: min(292px, calc(100vw - 104px));
    height: 66px;
  }

  .eo-flexy-sticker__panel {
    grid-template-columns: minmax(0, 1fr) 27px;
    min-height: 66px;
    padding: 0px 11px 8px 64px;
    border-radius: 20px;
  }

  .eo-flexy-sticker__panel::before {
    border-radius: 20px;
  }

  .eo-flexy-sticker__avatar {
    left: 7px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .eo-flexy-sticker__avatar img {
    width: 78px;
    transform: translate(-20px, 0px);
  }

  .eo-flexy-sticker__kicker {
    font-size: 9px;
    padding: 3px 7px;
  }

  .eo-flexy-sticker__content strong {
    font-size: 12px;
  }

  .eo-flexy-sticker__arrow {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    margin-top: 10px;
  }
}

@media (max-width: 360px) {
  .eo-flexy-sticker {
    width: min(221px, calc(100vw - 98px));
  }

  .eo-flexy-sticker__panel {
    padding-left: 58px;
  }

  .eo-flexy-sticker__avatar {
    width: 44px;
    height: 44px;
  }

  .eo-flexy-sticker__avatar img {
    width: 72px;
  }

  .eo-flexy-sticker__content strong {
    font-size: 11.5px;
  }
}


/* =========================================================
   Mobile Hero Video-Reihenfolge
   Ziel: Video mobil zwischen .eo-lead und .eo-hero__list.
   Desktop bleibt unveraendert, da alle Regeln nur <= 768px greifen.
   ========================================================= */

@media (max-width: 768px) {
  .eo-hero--landing .eo-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .eo-hero--landing .eo-hero__copy {
    display: contents;
  }

  .eo-hero--landing .eo-h1 {
    order: 1;
    width: 100%;
  }

  .eo-hero--landing .eo-lead {
    order: 2;
    width: 100%;
    margin-bottom: 18px;
  }

  .eo-hero--landing .eo-hero__video {
    order: 3;
    width: 100%;
    margin: 0 0 20px;
  }

  .eo-hero--landing .eo-hero__video-box {
    width: 100%;
    max-width: none;
  }

  .eo-hero--landing .eo-hero__video-trust {
    margin-top: 10px;
  }

  .eo-hero--landing .eo-hero__list {
    order: 4;
    width: 100%;
  }

  .eo-hero--landing .eo-btns {
    order: 5;
    width: 100%;
  }

  .eo-hero--landing .eo-hero__meta {
    order: 6;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .eo-hero--landing .eo-hero__video {
    margin-bottom: 18px;
  }

  .eo-hero--landing .eo-hero__video-box {
    border-radius: 20px;
  }

  .eo-hero--landing .eo-hero__video-trust {
    font-size: 12.5px;
  }
}

