.elementor-20898 .elementor-element.elementor-element-3393e51{--display:flex;}.elementor-20898 .elementor-element.elementor-element-db3194c{--display:flex;}.elementor-20898 .elementor-element.elementor-element-ba89c04{--display:flex;}.elementor-20898 .elementor-element.elementor-element-ca1326d{--display:flex;}.elementor-20898 .elementor-element.elementor-element-c602d2c{--display:flex;}.elementor-20898 .elementor-element.elementor-element-26d7529{--display:flex;}/* Start custom CSS *//* Stackup • Internet Provider Card Styles */

.isp-card {
  --ink: #11223D;
  --brand: #FE385A;
  --muted: #64748b;
  --line: #e5e7eb;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(17, 34, 61, 0.08);
  padding: 18px 22px;
  margin: 16px auto;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
  transition: all 0.25s ease;
}

.isp-card:hover {
  box-shadow: 0 10px 24px rgba(17, 34, 61, 0.12);
  transform: translateY(-2px);
}

/* Header */
.isp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.isp-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
}

/* Verified Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.2px;
}

.badge svg {
  width: 14px;
  height: 14px;
  stroke: #10b981;
}

/* Description */
.isp-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 740px;
}

/* Fact Buttons */
.isp-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.fact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: 0.25s;
  box-shadow: 0 2px 6px rgba(254, 56, 90, 0.08);
}

.fact-btn:hover {
  background: #fff4f6;
  box-shadow: 0 3px 8px rgba(254, 56, 90, 0.15);
}

/* CTA */
.isp-cta {
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #ffffff !important;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 20px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(254, 56, 90, 0.18);
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

.btn:hover {
  transform: translateY(-1px);
  background: #e1324f;
  box-shadow: 0 10px 26px rgba(254, 56, 90, 0.25);
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
}

/* Responsive */
@media (max-width: 740px) {
  .isp-card {
    padding: 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */