.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #031020;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 30px rgba(102,170,255,0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(102,170,255,0.36); }
.btn.btn-dark {
  color: #f2f7ff;
  border-color: rgba(158, 198, 246, 0.54);
  background: linear-gradient(135deg, #234486, #2f5bb3);
  box-shadow: 0 10px 28px rgba(10, 25, 66, 0.46), inset 0 1px 0 rgba(255,255,255,0.14);
}
.btn.btn-dark:hover { box-shadow: 0 14px 32px rgba(10, 25, 66, 0.54), inset 0 1px 0 rgba(255,255,255,0.16); }
.btn.alt {
  background: rgba(18, 27, 44, 0.62);
  color: var(--txt);
  border-color: var(--stroke);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.grid { display: grid; gap: 14px; grid-template-columns: repeat(12, minmax(0,1fr)); }
.card {
  grid-column: span 6;
  position: relative;
  isolation: isolate;
  background: linear-gradient(150deg, var(--card-1), var(--card-2));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), var(--card-shadow);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(135,240,255,0.08), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); }
.card p + p { margin-top: 10px; }
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 216, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 18px 34px rgba(2, 6, 14, 0.5);
}
.card-full { grid-column: span 12; }

.card--has-hover-overlay { overflow: hidden; }
.card-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(4, 8, 18, 0);
  color: #f5f8ff;
  opacity: 0;
  transition: opacity 220ms ease, background 220ms ease;
}
.card-hover-overlay span {
  font-size: clamp(1.15rem, 2.4vw, 1.72rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  transform: scale(0.88);
  transition: transform 220ms ease;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.55);
}
.card--has-hover-overlay:hover .card-hover-overlay,
.card--has-hover-overlay:focus-within .card-hover-overlay,
.card-hover-overlay:focus-visible { opacity: 1; background: rgba(4, 8, 18, 0.62); }
.card--has-hover-overlay:hover .card-hover-overlay span,
.card--has-hover-overlay:focus-within .card-hover-overlay span,
.card-hover-overlay:focus-visible span { transform: scale(1); }

.pill-row { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 24px; }
.pill {
  border: 1px solid rgba(128,158,210,0.14);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.83rem;
  color: #c7d7f5;
  background: rgba(34,48,72,0.38);
}

.steps { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.step {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--card-1), var(--card-2));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 22px rgba(2,6,14,0.38);
  padding: 16px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.step .n {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(110,168,255,0.22);
  font-weight: 700;
  margin-bottom: 10px;
}
.step:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 216, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 14px 28px rgba(2,6,14,0.46);
}

.logo-carousel { margin-top: 14px; padding: 8px 0; }
.logo-track { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px 24px; align-items: start; }
.logo-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; padding: 10px 8px; min-height: 170px; }
.logo-link { color: inherit; text-decoration: none; display: block; width: 100%; border-radius: 16px; transition: transform 180ms ease; }
.logo-link:hover { transform: translateY(-2px); }
.logo-mark {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(196, 219, 255, 0.24);
  background: rgba(110,168,255,0.16);
  color: #d8e8ff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
  margin: 0 auto;
}
.logo-mark.has-image { background: rgba(255,255,255,0.92); padding: 10px; }
.logo-mark.logo-eichwald img { transform: scale(1.22); transform-origin: center; }
.logo-mark.logo-shifted { background: #000; }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-copy { margin-top: 10px; }
.logo-copy strong { display: block; font-size: 0.95rem; line-height: 1.2; }
.logo-copy span { display: block; color: #b9c4de; font-size: 0.82rem; margin-top: 4px; }

.cta {
  margin: 34px 0 60px;
  border: 1px solid rgba(171, 156, 255, 0.42);
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(142deg, rgba(12, 18, 42, 0.96) 0%, rgba(20, 26, 68, 0.93) 46%, rgba(48, 34, 96, 0.92) 100%),
    radial-gradient(520px 260px at 12% -30%, rgba(118, 150, 240, 0.18), transparent 70%),
    radial-gradient(460px 240px at 94% -26%, rgba(158, 112, 240, 0.17), transparent 72%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 20px 42px rgba(6, 10, 28, 0.58);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-actions { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cta-title { margin:0 0 6px; }
.cta-subtitle { margin:0 0 8px; font-size:1.45rem; font-weight:700; color:#d8dcff; }
.cta-copy { margin:0; color:#cfd7ff; }
.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #1faa59;
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 24px rgba(31, 170, 89, 0.32);
  text-decoration: none;
}
.wa-icon { width: 24px; height: 24px; background: transparent; color: #fff; display: grid; place-items: center; line-height: 1; flex-shrink: 0; }
.wa-icon svg { width: 20px; height: 20px; display: block; fill: currentColor; }

footer { border-top: 1px solid rgba(255,255,255,0.1); color: #9ba8c7; padding: 24px 0 36px; font-size: 0.9rem; }
.footer-inner { display: flex; align-items: center; gap: 12px; }
.legal-links { margin-left: auto; display: inline-flex; gap: 14px; }
.legal-links a,
.legal-links button { color: #c7d3f3; text-decoration: none; background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }
.legal-links a:hover,
.legal-links button:hover { text-decoration: underline; }

@media (hover: none) {
  .card--has-hover-overlay .card-hover-overlay {
    position: static;
    inset: auto;
    z-index: auto;
    display: inline;
    width: auto;
    height: auto;
    margin-top: 8px;
    opacity: 1;
    background: transparent;
    color: #7ea7ff;
  }
  .card--has-hover-overlay .card-hover-overlay span {
    transform: none;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-decoration: none;
    text-shadow: none;
  }
}

@media (max-width: 930px) {
  .card { grid-column: span 12; }
  .steps { grid-template-columns: 1fr; }
  .logo-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .legal-links a.mobile-hide { display: none; }
}
