@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.omnaro-pro-section,
.omnaro-pro-section * { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Section ── */
.omnaro-pro-section {
  width: 100%;
  padding: 80px 20px 90px;
  background: #0f0f0f;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: #ffffff;
  overflow: hidden;
}

/* ── Wrap 1050px ── */
.omnaro-pro-wrap {
  max-width: 1050px;
  margin: 0 auto;
}

/* ── Header ── */
.omnaro-pro-head {
  text-align: center;
  margin-bottom: 52px;
}
.omnaro-pro-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #14B8A6;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.omnaro-pro-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
}
.omnaro-gradient-text {
  background: linear-gradient(90deg, #14B8A6, #3771BB);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.omnaro-pro-subtitle {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}

/* ── Grid: 4 → 2 → 1 ── */
.omnaro-pro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 960px) {
  .omnaro-pro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 580px) {
  .omnaro-pro-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ── Karte — kein transform, nur Rand leuchtet ── */
.omnaro-pro-card {
  background: #1a1a1a;
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,.07);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: #ffffff;
  /* Nur border-color und box-shadow — KEIN transform */
  transition: border-color .3s ease, box-shadow .3s ease;
}

/* Hover: Gradient-Rand leuchtet — Karte BEWEGT SICH NICHT */
.omnaro-pro-card:hover {
  border-color: transparent;
  box-shadow:
    0 0 0 1.5px #14B8A6,
    0 0 0 3px #3771BB,
    0 0 18px rgba(20,184,166,.28),
    0 0 36px rgba(55,113,187,.16);
  text-decoration: none;
  color: #ffffff;
}

/* ── Card top ── */
.omnaro-pro-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.omnaro-pro-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.omnaro-pro-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Tag ── */
.omnaro-pro-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(90deg, #14B8A6, #3771BB);
  color: #ffffff;
}

/* ── Titel ── */
.omnaro-pro-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 9px;
  letter-spacing: -.01em;
}

/* ── Beschreibung ── */
.omnaro-pro-card-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  font-weight: 400;
  flex: 1;
}

/* ── Card Bottom: Divider + Link — keine Logos ── */
.omnaro-pro-card-bottom {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.omnaro-pro-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 14px;
}
.omnaro-pro-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #14B8A6;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}
.omnaro-pro-card-link svg {
  width: 11px; height: 11px;
  fill: none;
  stroke: #14B8A6;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s, stroke .2s;
}
.omnaro-pro-card:hover .omnaro-pro-card-link { color: #3771BB; }
.omnaro-pro-card:hover .omnaro-pro-card-link svg { stroke: #3771BB; transform: translateX(4px); }

/* ── Footer ── */
.omnaro-pro-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: 14px;
}
.omnaro-pro-stats { display: flex; gap: 32px; }
.omnaro-pro-stat-number {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(90deg, #14B8A6, #3771BB);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.omnaro-pro-stat-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  margin-top: 3px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.omnaro-pro-trust { display: flex; align-items: center; gap: 8px; }
.omnaro-pro-stars { display: flex; gap: 2px; }
.omnaro-pro-star { width: 14px; height: 14px; fill: #14B8A6; }
.omnaro-pro-trust-text { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 400; }

/* ── Editor hint ── */
.omnaro-editor-hint {
  font-size: 12px;
  color: #9ca3af;
  background: rgba(20,184,166,.1);
  border-left: 3px solid #14B8A6;
  border-radius: 4px;
  padding: 9px 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ── MOBIL ── */
@media (max-width: 580px) {
  .omnaro-pro-section { padding: 56px 16px 64px; }
  .omnaro-pro-head { margin-bottom: 36px; text-align: left; }
  .omnaro-pro-subtitle { margin-left: 0; }
  .omnaro-pro-card { padding: 20px 18px 18px; }
  .omnaro-pro-card-title { font-size: 19px; }
  .omnaro-pro-card-desc { font-size: 14px; }
  .omnaro-pro-card-link { font-size: 13px; }
  .omnaro-pro-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .omnaro-pro-stats { gap: 24px; }
}
