*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #7B2FBE;
  --purple-btn: #8B3FCC;
  --purple-light: #9B5FE0;
  --purple-pale: #F3EEFF;
  --purple-pale2: #EDE8FF;
  --blue-link: #3B82F6;
  --dark: #111118;
  --dark-heading: #0F172A;
  --white: #FFFFFF;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --light-gray: #E5E7EB;
  --bg-light: #F8F8FC;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #0a0a2e;
  padding: 10px 20px;
}

nav {
  background: #fff;
  border-radius: 100px;
  height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6px 0 20px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  max-width: 1200px;
  margin: 0 auto;
  gap: 8px;
}

/* Logo wordmark */
.logo-wordmark {
  font-size: 22px; font-weight: 700;
  color: var(--purple); text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center;
  align-self: center;
}

/* Center nav items */
.nav-center {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0 auto;
}

.nav-item {
  position: static;
  height: 52px; display: flex; align-items: center;
}

.nav-item > a,
.nav-item > button {
  font-size: 14px; font-weight: 600;
  color: var(--dark-heading); text-decoration: none;
  background: none; border: none; cursor: pointer;
  font-family: var(--font);
  padding: 7px 14px; border-radius: 100px;
  display: flex; align-items: center; gap: 4px;
  transition: background .15s, color .15s;
  white-space: nowrap; line-height: 1;
  align-self: center;
}
.nav-item > a:hover,
.nav-item > button:hover { background: #F3F4F6; }
.nav-item:hover > button { background: #EDE8FF; color: var(--purple); }

.nav-chevron {
  font-size: 9px; opacity: .45;
  transition: transform .2s;
  display: inline-block;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); opacity: .8; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; align-self: center; }
.nav-search {
  background: none; border: none; cursor: pointer;
  font-size: 17px; padding: 8px; color: var(--dark-heading);
  line-height: 1; transition: color .2s;
  display: flex; align-items: center;
}
.nav-search:hover { color: var(--purple); }

.nav-cta {
  background: var(--purple); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 9px 20px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s;
  display: flex; align-items: center;
  align-self: center;
}
.nav-cta:hover { background: var(--purple-light); }

/* ── MEGA DROPDOWN ── */
/* Dropdown anchors to the full nav width, positioned below nav-wrapper */
.mega-dropdown {
  position: fixed;
  top: 72px; /* nav-wrapper height */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 32px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 300;
}

/* Show on hover of parent li */
.nav-item:hover .mega-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Keep dropdown open when mouse moves into it */
.mega-dropdown:hover { opacity: 1; visibility: visible; pointer-events: all; }

/* Lösungen: sidebar + 4 colored cards */
.mega-loesungen {
  display: grid; grid-template-columns: 170px 1fr;
  gap: 28px; min-width: 820px;
}

.mega-sidebar {
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--light-gray);
  padding-right: 20px;
}
.mega-sidebar-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  color: var(--gray-light); text-transform: uppercase;
  margin-bottom: 10px;
}
.mega-sidebar a {
  font-size: 14px; font-weight: 600; color: var(--dark-heading);
  text-decoration: none; padding: 8px 10px; border-radius: 8px;
  transition: background .15s, color .15s;
}
.mega-sidebar a:hover { background: var(--purple-pale); color: var(--purple); }

.mega-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.mega-card {
  border-radius: 16px; padding: 22px 16px;
  display: flex; flex-direction: column;
  cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  min-height: 180px;
}
.mega-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

.mega-card-1 { background: #2563EB; }
.mega-card-2 { background: #06B6D4; }
.mega-card-3 { background: #C8E827; }
.mega-card-4 { background: #0F4C3A; }

.mega-card h4 {
  font-size: 13px; font-weight: 800; line-height: 1.25;
  margin-bottom: 10px;
}
.mega-card-1 h4, .mega-card-2 h4, .mega-card-4 h4 { color: #fff; }
.mega-card-3 h4 { color: var(--dark-heading); }

.mega-card p {
  font-size: 12px; line-height: 1.55; flex: 1; margin-bottom: 16px;
}
.mega-card-1 p, .mega-card-2 p, .mega-card-4 p { color: rgba(255,255,255,0.8); }
.mega-card-3 p { color: rgba(0,0,0,0.65); }

.mega-card-link { font-size: 12px; font-weight: 700; margin-top: auto; }
.mega-card-1 .mega-card-link,
.mega-card-2 .mega-card-link,
.mega-card-4 .mega-card-link { color: rgba(255,255,255,0.9); }
.mega-card-3 .mega-card-link { color: var(--dark-heading); }

/* Simple 2-col dropdown */
.mega-simple { min-width: 500px; }
.mega-simple-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  color: var(--gray-light); text-transform: uppercase; margin-bottom: 16px;
}
.mega-simple-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 20px;
}
.mega-simple-grid a {
  font-size: 15px; font-weight: 600; color: var(--dark-heading);
  text-decoration: none; padding: 9px 10px; border-radius: 8px;
  display: block; transition: background .15s, color .15s;
}
.mega-simple-grid a:hover { background: var(--purple-pale); color: var(--purple); }
.mega-footer-bar {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--light-gray);
  font-size: 13px; color: var(--gray);
}
.mega-footer-bar a { color: var(--purple); text-decoration: none; font-weight: 600; }
/* Bridge: invisible gap-filler between nav button and dropdown panel */
.nav-item::after {
  content: '';
  position: fixed;
  top: 72px; left: 0; right: 0;
  height: 16px; /* covers the gap */
  display: none;
}
.nav-item:hover::after { display: block; }

.mega-footer-bar a:hover { text-decoration: underline; }

/* ── HERO ── */
.hero { padding: 110px 48px 60px; background: var(--white); max-width: 1100px; margin: 0 auto; }

.hero h1 {
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 900;
  color: var(--dark-heading);
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 48px;
}
.hero h1 .hl { color: var(--purple-light); }

/* Benefits card */
.benefits-card {
  background: var(--purple-pale);
  border-radius: 16px;
  padding: 44px 48px;
  margin-bottom: 52px;
}
.benefits-card h2 {
  font-size: 20px; font-weight: 700; color: var(--dark-heading);
  margin-bottom: 28px;
}
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; font-weight: 400; color: var(--dark-heading); line-height: 1.5;
}
.bullet { width: 12px; height: 12px; border-radius: 50%; background: var(--purple); flex-shrink: 0; margin-top: 5px; }

/* Founder quote */
.founder-block {
  display: flex; align-items: flex-start; gap: 36px;
  padding: 36px 0;
}
.founder-img {
  width: 220px; height: 220px; flex-shrink: 0;
  border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #d4c5e8, #b8a0d4);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.founder-text { flex: 1; padding-top: 8px; }
.founder-quote {
  font-size: 17px; font-style: italic; color: var(--dark-heading);
  line-height: 1.65; margin-bottom: 20px;
}
.founder-name { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.founder-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--purple-btn); color: #fff;
  font-size: 16px; font-weight: 600;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.founder-cta:hover { background: var(--purple-light); transform: translateY(-2px); }

/* ── PLATFORM SUITE ── */
.platform { padding: 90px 48px; background: var(--bg-light); text-align: center; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--purple); text-transform: uppercase; margin-bottom: 16px;
}
.platform h2 {
  font-size: clamp(28px, 4vw, 50px); font-weight: 900;
  color: var(--dark-heading); letter-spacing: -1.5px; margin-bottom: 12px;
}
.platform-sub {
  font-size: 17px; color: var(--gray); margin-bottom: 56px; font-weight: 400;
}

/* Platform cards list layout */
.platform-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.platform-card {
  background: var(--white); border: 1.5px solid var(--light-gray);
  border-radius: 14px; padding: 28px 32px;
  display: flex; align-items: flex-start; gap: 20px;
  text-align: left;
  transition: border-color .25s, box-shadow .25s;
  cursor: default;
}
.platform-card:hover { border-color: var(--purple); box-shadow: 0 4px 24px rgba(123,47,190,0.1); }
.platform-card-icon { font-size: 40px; flex-shrink: 0; margin-top: 2px; }
.platform-card-body { flex: 1; }
.platform-card-body h3 { font-size: 18px; font-weight: 700; color: var(--dark-heading); margin-bottom: 5px; }
.platform-card-body .subtitle { font-size: 14px; color: var(--blue-link); font-weight: 500; margin-bottom: 10px; }
.platform-card-body p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* Also show 3-column on wider screens */
.platform-3col { display: none; }

/* ── PROCESS ── */
.process { padding: 90px 48px; background: var(--white); text-align: center; }
.process h2 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 900;
  color: var(--dark-heading); letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 52px;
}
.process h2 .hl { color: var(--purple-light); }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto;
}
.process-step { text-align: center; }
.process-icon-wrap {
  width: 64px; height: 64px;
  background: var(--bg-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 16px;
}
.process-step-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--purple); text-transform: uppercase; margin-bottom: 8px;
}
.process-step h3 { font-size: 18px; font-weight: 700; color: var(--dark-heading); margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ── BENEFITS CARDS ── */
.benefits-section { padding: 90px 48px; background: var(--bg-light); text-align: center; }
.benefits-section h2 {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 900;
  color: var(--dark-heading); letter-spacing: -1.5px; margin-bottom: 10px;
}
.benefits-section .sub { font-size: 16px; color: var(--gray); margin-bottom: 48px; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 920px; margin: 0 auto;
}
.benefit-card {
  background: var(--white); border-radius: 14px; padding: 32px 28px;
  text-align: left; border: 1px solid var(--light-gray);
  transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(123,47,190,0.1); }
.benefit-icon-wrap {
  width: 44px; height: 44px;
  background: var(--purple-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--dark-heading); margin-bottom: 10px; line-height: 1.35; }
.benefit-card p { font-size: 13.5px; color: var(--gray); line-height: 1.65; }

/* ── TEAM ── */
.team { padding: 90px 48px; background: var(--white); text-align: center; }
.team h2 {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 900;
  color: var(--dark-heading); letter-spacing: -1.5px; margin-bottom: 52px;
}
.team h2 .hl { color: var(--purple-light); }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 900px; margin: 0 auto;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1;
  border-radius: 14px; overflow: hidden;
  background: var(--bg-light);
  margin-bottom: 16px;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}

.team-card h3 { font-size: 16px; font-weight: 700; color: var(--dark-heading); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--blue-link); font-weight: 500; margin-bottom: 10px; }
.team-card .bio { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.social-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  text-decoration: none; color: var(--gray);
  transition: border-color .2s, color .2s;
}
.social-btn:hover { border-color: var(--purple); color: var(--purple); }

/* ── CONTACT ── */
.contact-section {
  padding: 90px 60px;
  background: #13111E;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.contact-section .section-label { color: rgba(255,255,255,0.4); }
.contact-section h2 {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 900;
  color: var(--white); letter-spacing: -1.5px; margin-bottom: 20px; line-height: 1.1;
}
.contact-section h2 .hl { color: var(--purple-light); }
.contact-section .contact-desc {
  font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 36px;
}
.contact-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--purple-btn); color: #fff;
  font-size: 16px; font-weight: 600;
  padding: 15px 30px; border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.contact-cta-btn:hover { background: var(--purple-light); transform: translateY(-2px); }

.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 18px;
  transition: background .25s;
}
.contact-info-card:hover { background: rgba(255,255,255,0.1); }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(123,47,190,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.contact-info-value { font-size: 16px; font-weight: 600; color: var(--white); }

/* ── BLOG ── */
/* Hero */
.blog-hero {
  background: #C8E827; /* lime green like haufe */
  padding: 72px 60px 0;
}
.blog-hero-inner {
  max-width: 1100px; margin: 0 auto;
}
.blog-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900; color: var(--dark-heading);
  letter-spacing: -2px; line-height: 1;
  margin-bottom: 52px;
}
.blog-hero-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.blog-hero-img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 0; overflow: hidden;
  background: linear-gradient(135deg, #3b1f6e, #6d28d9);
}
.blog-hero-img .img-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
}
.blog-hero-desc {
  font-size: 20px; font-weight: 400;
  color: var(--dark-heading); line-height: 1.6;
}

/* Filter tabs */
.blog-filters {
  padding: 36px 60px 0;
  background: var(--white);
}
.blog-filters-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--light-gray);
}
.blog-filter-tab {
  font-size: 14px; font-weight: 500;
  padding: 8px 18px; border-radius: 100px;
  border: 1.5px solid var(--light-gray);
  background: none; cursor: pointer;
  font-family: var(--font); color: var(--dark);
  transition: all .2s;
}
.blog-filter-tab:hover { border-color: var(--purple); color: var(--purple); }
.blog-filter-tab.active {
  background: var(--dark-heading); color: #fff;
  border-color: var(--dark-heading);
}

/* Card grid */
.blog-body {
  padding: 48px 60px 90px;
  background: var(--white);
}
.blog-body-inner { max-width: 1100px; margin: 0 auto; }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 52px;
}

.blog-card {
  cursor: pointer; border-radius: 0;
  overflow: hidden; background: var(--white);
  transition: transform .3s;
}
.blog-card:hover { transform: translateY(-4px); }

.blog-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  position: relative;
}
.blog-card-img .img-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

/* Category badge overlaid on image bottom-left */
.blog-cat-badge {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,0.92);
  font-size: 11px; font-weight: 600;
  color: var(--dark-heading); padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.08);
}

.blog-card-body { padding: 18px 0 0; }
.blog-card-body h4 {
  font-size: 18px; font-weight: 700;
  color: var(--dark-heading); line-height: 1.3;
  margin-bottom: 8px; transition: color .2s;
}
.blog-card:hover .blog-card-body h4 { color: var(--purple); }
.blog-card-date { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.blog-card-body p {
  font-size: 14px; color: var(--gray); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

.blog-more-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--dark-heading); border-radius: 100px;
  padding: 14px 40px; font-size: 14px; font-weight: 700;
  color: var(--dark-heading); text-decoration: none; background: none;
  max-width: 260px; margin: 0 auto; cursor: pointer; font-family: var(--font);
  transition: background .2s, color .2s;
}
.blog-more-btn:hover { background: var(--dark-heading); color: #fff; }

/* ── EXPERTISE ── */
.expertise {
  position: relative;
  padding: 90px 48px;
  overflow: hidden;
  background: linear-gradient(135deg, #6B21D4 0%, #8B2FE8 30%, #C026D3 65%, #9B2FBE 100%);
}

/* Animated mesh blobs */
.expertise::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 50%, rgba(255,0,200,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 85% 30%, rgba(120,0,255,0.4) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(255,50,150,0.25) 0%, transparent 60%);
  animation: blobShift 8s ease-in-out infinite alternate;
}

@keyframes blobShift {
  from { opacity: 0.8; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.04); }
}

.expertise-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }

.expertise h2 {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 52px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.expertise-card {
  background: rgba(255,255,255,0.96);
  border-radius: 20px;
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 0;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.expertise-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.expertise-card p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 32px;
}

.expertise-card-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--purple-btn);
  color: var(--white);
  font-size: 15px; font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  align-self: flex-start;
  transition: background .2s, transform .2s;
}
.expertise-card-btn:hover { background: var(--purple-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: #EEEEEE;
  padding: 64px 60px 0;
  color: var(--dark);
  font-size: 15px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { font-size: 34px; font-weight: 700; color: var(--purple); text-decoration: none; letter-spacing: -1px; line-height: 1; margin-bottom: 28px; display: inline-block; }
.footer-contact-info { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.footer-contact-info a { color: var(--dark); text-decoration: underline; font-size: 14px; transition: color .2s; }
.footer-contact-info a:hover { color: var(--purple); }
.footer-contact-info span { font-size: 14px; }
.footer-address { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 24px; }
.footer-social { display: flex; gap: 18px; align-items: center; }
.footer-social a { font-size: 19px; color: var(--dark); text-decoration: none; font-weight: 900; transition: color .2s; }
.footer-social a:hover { color: var(--purple); }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul a { font-size: 14px; color: #555; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--purple); }
.footer-form-col h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.footer-form-col p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.footer-form { display: flex; flex-direction: column; gap: 9px; }
.footer-input { background: var(--white); border: 1px solid #D1D5DB; border-radius: 8px; padding: 10px 13px; font-family: var(--font); font-size: 14px; color: var(--dark); outline: none; transition: border-color .2s; width: 100%; }
.footer-input::placeholder { color: #9CA3AF; }
.footer-input:focus { border-color: var(--purple); }
.footer-textarea { min-height: 82px; resize: vertical; }
.footer-form-row { display: flex; gap: 8px; align-items: flex-end; }
.footer-form-row .footer-input { flex: 1; }
.footer-submit { width: 44px; height: 44px; flex-shrink: 0; background: var(--purple-btn); border: none; border-radius: 50%; color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.footer-submit:hover { background: var(--purple-light); transform: scale(1.08); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 13px; color: var(--gray); }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a { color: var(--gray); text-decoration: none; transition: color .2s; font-size: 13px; }
.footer-bottom-links a:hover { color: var(--dark); }

/* ── MEGA DROPDOWN: Anwendungsfälle (SEO-Landingpages) ── */
.mega-usecases {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 4px 24px;
  min-width: 800px;
  padding: 28px 32px 24px;
}
.mega-uc-col { display: flex; flex-direction: column; }
.mega-uc-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 8px; padding: 0 8px;
}
.mega-uc-col > a {
  display: block; font-size: 13.5px; font-weight: 500; color: var(--dark);
  text-decoration: none; padding: 7px 8px; border-radius: 8px; line-height: 1.3;
  transition: background .15s, color .15s;
}
.mega-uc-col > a:hover { background: var(--purple-pale); color: var(--purple); }
.mega-uc-footer {
  grid-column: 1 / -1; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--light-gray); font-size: 13px; color: var(--gray);
}
.mega-uc-footer a { color: var(--purple); text-decoration: none; font-weight: 600; }
.mega-uc-footer a:hover { text-decoration: underline; }

/* ── HOMEPAGE: Zielgruppe / Leistungen / Anwendungsfälle / Ergebnisse ── */
.hp-audience { padding: 90px 48px; background: var(--white); }
.hp-inner { max-width: 1100px; margin: 0 auto; }
.hp-audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.hp-audience-card {
  background: var(--bg-light); border: 1px solid var(--light-gray); border-radius: 16px;
  padding: 28px 24px; text-align: left;
}
.hp-audience-card .hp-ac-icon { font-size: 26px; margin-bottom: 12px; }
.hp-audience-card h3 { font-size: 16px; font-weight: 700; color: var(--dark-heading); margin-bottom: 6px; }
.hp-audience-card p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

.hp-services { padding: 90px 48px; background: var(--bg-light); }
.hp-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.hp-service-card {
  background: #fff; border: 1px solid var(--light-gray); border-radius: 16px; padding: 30px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.hp-service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(123,47,190,0.1); border-color: var(--purple); }
.hp-service-icon { font-size: 30px; margin-bottom: 14px; }
.hp-service-card h3 { font-size: 19px; font-weight: 700; color: var(--dark-heading); margin-bottom: 10px; letter-spacing: -.3px; }
.hp-service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; flex: 1; }
.hp-service-link { margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--purple); }

.hp-usecases { padding: 90px 48px; background: var(--white); }
.hp-uc-cluster { margin-top: 44px; }
.hp-uc-cluster-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.hp-uc-cluster-head h3 { font-size: 20px; font-weight: 800; color: var(--dark-heading); letter-spacing: -.4px; }
.hp-uc-cluster-head .hp-uc-pill {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--purple); background: var(--purple-pale); padding: 4px 10px; border-radius: 100px;
}
.hp-uc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.hp-uc-card {
  background: var(--bg-light); border: 1px solid var(--light-gray); border-radius: 12px;
  padding: 18px 18px 16px; text-decoration: none;
  transition: border-color .2s, transform .2s, background .2s;
}
.hp-uc-card:hover { border-color: var(--purple); transform: translateY(-3px); background: #fff; }
.hp-uc-card h4 { font-size: 14px; font-weight: 700; color: var(--dark-heading); line-height: 1.35; }
.hp-uc-card .hp-uc-arrow { color: var(--purple); font-size: 16px; margin-top: 12px; display: block; }

.hp-results { padding: 80px 48px; background: var(--dark-heading); }
.hp-results h2 { color: #fff; }
.hp-results .section-label { color: rgba(255,255,255,0.45); }
.hp-results-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.hp-result-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 26px 22px; text-align: center;
}
.hp-result-icon { font-size: 26px; margin-bottom: 10px; }
.hp-result-card h3 { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.35; }

@media (max-width: 900px) {
  .hp-audience-grid, .hp-services-grid, .hp-uc-grid, .hp-results-grid { grid-template-columns: 1fr 1fr; }
  .mega-usecases { min-width: auto; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hp-audience-grid, .hp-services-grid, .hp-uc-grid, .hp-results-grid { grid-template-columns: 1fr; }
}

/* ── HOMEPAGE: 5-Schritte-Ablauf & Hero-CTA ── */
.hp-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px; }
.hp-step { text-align: center; position: relative; }
.hp-step::after { content: '→'; position: absolute; right: -12px; top: 22px; font-size: 18px; color: var(--light-gray); }
.hp-step:last-child::after { display: none; }
.hp-step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--purple); color: #fff;
  font-size: 19px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.hp-step h3 { font-size: 15px; font-weight: 700; color: var(--dark-heading); margin-bottom: 6px; }
.hp-step p { font-size: 13px; color: var(--gray); line-height: 1.55; }
.hp-hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 48px; }
.hp-cta-primary {
  display: inline-flex; align-items: center; gap: 8px; background: var(--purple); color: #fff;
  font-size: 15px; font-weight: 700; padding: 14px 30px; border-radius: 100px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.hp-cta-primary:hover { background: var(--purple-light); transform: translateY(-2px); }
.hp-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px; color: var(--purple);
  font-size: 15px; font-weight: 600; padding: 14px 8px; text-decoration: none;
}
.hp-cta-secondary:hover { text-decoration: underline; }
@media (max-width: 900px) { .hp-steps { grid-template-columns: 1fr 1fr; } .hp-step::after { display: none; } }
@media (max-width: 560px) { .hp-steps { grid-template-columns: 1fr; } }
