.fischer-card {
  font-family: "Inter", Arial, sans-serif;
  color: #1f2933;
  max-width: 980px;
  margin: auto;
  line-height: 1.6;
}

/* ===== SEKCJE ===== */
.fischer-section { margin: 60px 0; }

.fischer-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}

.fischer-title::after {
  content: "";
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #0b3c6d, #1e6fb8);
  display: block;
  margin-top: 10px;
  border-radius: 3px;
}

/* ===== ZALETY ===== */
.fischer-features {
  background: linear-gradient(135deg, #f8fbff, #eef4fb);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(11,60,109,0.08);
}

.fischer-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fischer-features li {
  margin-bottom: 16px;
  font-size: 15px;
  padding-left: 30px;
  position: relative;
}

.fischer-features li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #1e6fb8;
  font-weight: bold;
}

/* ===== DANE TECH ===== */
.fischer-tech {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px;
  border: 1px solid #e6edf5;
}

.fischer-tech-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #dbe4ee;
  font-size: 15px;
}

.fischer-tech-row strong { color: #0b3c6d; }
.fischer-tech-row:last-child { border-bottom: none; }

/* ===== ZASTOSOWANIA ===== */
.fischer-apps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.fischer-app {
  background: linear-gradient(135deg, #0b3c6d, #174e86);
  color: #fff;
  padding: 20px 22px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(11,60,109,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* ===== MATERIAŁY ===== */
.fischer-materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

.material-tile {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid #e6edf5;
  transition: transform .25s ease, box-shadow .25s ease;
}

.material-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.fischer-app:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11,60,109,0.45); }

.material-name {
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
  color: #0b3c6d;
}

/* ===== DLACZEGO ===== */
.fischer-why {
  background: linear-gradient(135deg, #f7faff, #ffffff);
  border-radius: 22px;
  padding: 44px;
  border: 1px solid #e6edf5;
}

.fischer-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.why-box strong {
  display: block;
  margin-bottom: 10px;
  color: #1e6fb8;
}